mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-03 12:13:43 +00:00
24 lines
483 B
Rust
24 lines
483 B
Rust
|
// Check that this can be compiled in a reasonable time.
|
||
|
|
||
|
//@ build-pass
|
||
|
|
||
|
fn main() {
|
||
|
// 96 nested closures
|
||
|
let x = ();
|
||
|
|| || || || || || || ||
|
||
|
|| || || || || || || ||
|
||
|
|| || || || || || || ||
|
||
|
|| || || || || || || ||
|
||
|
|
||
|
|| || || || || || || ||
|
||
|
|| || || || || || || ||
|
||
|
|| || || || || || || ||
|
||
|
|| || || || || || || ||
|
||
|
|
||
|
|| || || || || || || ||
|
||
|
|| || || || || || || ||
|
||
|
|| || || || || || || ||
|
||
|
|| || || || || || || ||
|
||
|
[&(), &x];
|
||
|
}
|