1
Fork 0
rust/tests/ui/expr/if/if-cond-bot.rs

14 lines
201 B
Rust
Raw Normal View History

//@ run-fail
//@ error-pattern:quux
//@ ignore-emscripten no processes
2020-04-16 15:50:32 +09:00
2016-05-27 08:09:36 +05:30
fn my_err(s: String) -> ! {
println!("{}", s);
panic!("quux");
}
2020-04-16 15:50:32 +09:00
2016-05-27 08:09:36 +05:30
fn main() {
if my_err("bye".to_string()) {
}
}