mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 05:59:17 +00:00
7 lines
100 B
Rust
7 lines
100 B
Rust
//@ known-bug: rust-lang/rust#125323
|
|
fn main() {
|
|
for _ in 0..0 {
|
|
[(); loop {}];
|
|
}
|
|
}
|