blob: 15108aa5a33c1c4d244ca971365ca99f06457886 [file] [log] [blame] [edit]
//@ edition:2018
// gate-test-async_closure
fn f() {
let _ = async || {}; //~ ERROR async closures are unstable
}
fn main() {}