mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-03 15:29:44 +00:00
11 lines
175 B
Rust
11 lines
175 B
Rust
//@ edition:2021
|
|
//@ check-pass
|
|
|
|
#![feature(closure_lifetime_binder)]
|
|
#![feature(ergonomic_clones)]
|
|
#![allow(incomplete_features)]
|
|
|
|
fn main() {
|
|
for<'a> use || -> () {};
|
|
}
|