mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 05:27:36 +00:00
13 lines
188 B
Rust
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());
|
|
}
|