mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 03:38:29 +00:00
9 lines
116 B
Rust
9 lines
116 B
Rust
//@ edition:2021
|
|
//@ check-pass
|
|
|
|
#![feature(closure_lifetime_binder)]
|
|
|
|
fn main() {
|
|
for<'a> async || -> () {};
|
|
}
|