blob: 345f19b06233bfcfb8b23f1643375d9475f5035b [file] [log] [blame]
// edition:2018
#![feature(async_await, await_macro)]
fn main() {
let _ = async |x: u8| {};
//~^ ERROR `async` non-`move` closures with arguments are not currently supported
}