blob: eea93f02b807a40469f944f0e1af839ac259c17b [file] [edit]
//@ edition: 2021
#![allow(incomplete_features)]
#![feature(move_expr)]
fn main() {
let s = String::from("hello");
let _ = async || {
move(s);
//~^ ERROR `move(expr)` is only supported in plain closures
};
}