rust/tests/ui/closures/binder/async-closure-with-binder.rs
2024-12-13 00:04:56 +00:00

9 lines
116 B
Rust

//@ edition:2021
//@ check-pass
#![feature(closure_lifetime_binder)]
fn main() {
for<'a> async || -> () {};
}