16 lines
154 B
Rust
16 lines
154 B
Rust
// compile-pass
|
|
#![allow(unused)]
|
|
|
|
fn f() {
|
|
let x: Vec<()> = Vec::new();
|
|
|
|
|| {
|
|
|| {
|
|
x.len()
|
|
}
|
|
};
|
|
}
|
|
|
|
|
|
fn main() {}
|