blob: 8459a8d63bff3e7d7a69a2e06927db4ab717983f [file] [log] [blame]
#![allow(while_true)]
//@ run-fail
//@ error-pattern:quux
//@ needs-subprocess
fn main() {
let _x: isize = {
while true {
panic!("quux");
}
8
};
}