mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
204 B
Rust
15 lines
204 B
Rust
#![allow(while_true)]
|
|
|
|
// run-fail
|
|
// error-pattern:quux
|
|
// ignore-emscripten no processes
|
|
|
|
fn main() {
|
|
let _x: isize = {
|
|
while true {
|
|
panic!("quux");
|
|
}
|
|
8
|
|
};
|
|
}
|