blob: 8dbf62a922e453cc26e6973bbb064e1c1c1cdf3e [file] [log] [blame] [edit]
//@ run-fail
//@ error-pattern:quux
//@ ignore-emscripten no processes
fn my_err(s: String) -> ! {
println!("{}", s);
panic!("quux");
}
fn main() {
3_usize == my_err("bye".to_string());
}