mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
219 B
Rust
15 lines
219 B
Rust
#![allow(while_true)]
|
|
|
|
// run-fail
|
|
// error-pattern:giraffe
|
|
// ignore-emscripten no processes
|
|
|
|
fn main() {
|
|
panic!("{}", {
|
|
while true {
|
|
panic!("giraffe")
|
|
}
|
|
"clandestine"
|
|
});
|
|
}
|