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 06:50:32 +00:00
2016-05-27 02:39:36 +00:00
fn my_err(s: String) -> ! {
println!("{}", s);
panic!("quux");
}
2020-04-16 06:50:32 +00:00
2016-05-27 02:39:36 +00:00
fn main() {
if my_err("bye".to_string()) {
}
}