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

13 lines
188 B
Rust
Raw Normal View History

//@ run-fail
//@ error-pattern:quux
//@ needs-subprocess
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() {
3_usize == my_err("bye".to_string());
}