blob: 24f4e8e4175a64d985a9d365cbfa48fc391889d3 [file] [log] [blame] [edit]
//@ edition:2021
//@ check-pass
#![feature(closure_lifetime_binder)]
#![feature(async_closure)]
fn main() {
for<'a> async || -> () {};
}