rust/src/test/ui/async-await/no-args-non-move-async-closure.rs

9 lines
188 B
Rust
Raw Normal View History

// edition:2018
2018-06-06 22:50:59 +00:00
#![feature(async_await, async_closure)]
2018-06-06 22:50:59 +00:00
fn main() {
let _ = async |x: u8| {};
//~^ ERROR `async` non-`move` closures with arguments are not currently supported
}