mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 21:02:04 +00:00
8 lines
124 B
Rust
8 lines
124 B
Rust
//@ check-pass
|
|
|
|
#![feature(closure_lifetime_binder)]
|
|
|
|
fn main() {
|
|
for<'a> || -> () { for<'c> |_: &'a ()| -> () {}; };
|
|
}
|