rust/tests/ui/expr/if/if-cond-bot.rs
2023-01-11 09:32:08 +00:00

14 lines
198 B
Rust

// 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()) {
}
}