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

13 lines
188 B
Rust

//@ run-fail
//@ error-pattern:quux
//@ needs-subprocess
fn my_err(s: String) -> ! {
println!("{}", s);
panic!("quux");
}
fn main() {
3_usize == my_err("bye".to_string());
}