11 lines
166 B
Rust
11 lines
166 B
Rust
#![allow(while_true)]
|
|
|
|
// error-pattern:giraffe
|
|
fn main() {
|
|
panic!({
|
|
while true {
|
|
panic!("giraffe")
|
|
}
|
|
"clandestine"
|
|
});
|
|
}
|