7 lines
100 B
Rust
7 lines
100 B
Rust
//@ known-bug: rust-lang/rust#125323
|
|
fn main() {
|
|
for _ in 0..0 {
|
|
[(); loop {}];
|
|
}
|
|
}
|