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