mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 18:24:04 +00:00
16 lines
153 B
Rust
16 lines
153 B
Rust
//@ check-pass
|
|
#![allow(unused)]
|
|
|
|
fn f() {
|
|
let x: Vec<()> = Vec::new();
|
|
|
|
|| {
|
|
|| {
|
|
x.len()
|
|
}
|
|
};
|
|
}
|
|
|
|
|
|
fn main() {}
|