blob: 7d1afcccaaba82e66531bc20f188a27448eec9c1 [file] [log] [blame] [edit]
//@ edition:2015..2021
#![allow(unused_assignments)]
#![allow(unused_variables)]
#![allow(non_fmt_panics)]
//@ run-fail
//@ error-pattern:wooooo
//@ needs-subprocess
fn main() {
let mut a = 1;
if 1 == 1 {
a = 2;
}
panic!(format!("woooo{}", "o"));
}