Files
rust/tests/ui/binop/binop-panic.rs

13 lines
202 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() {
3_usize == my_err("bye".to_string());
}