mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 14:47:48 +00:00
15 lines
207 B
Rust
15 lines
207 B
Rust
#![allow(while_true)]
|
|
|
|
//@ run-fail
|
|
//@ error-pattern:quux
|
|
//@ ignore-emscripten no processes
|
|
|
|
fn main() {
|
|
let _x: isize = {
|
|
while true {
|
|
panic!("quux");
|
|
}
|
|
8
|
|
};
|
|
}
|