mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 03:57:37 +00:00
14 lines
187 B
Rust
14 lines
187 B
Rust
//@ run-fail
|
|
//@ error-pattern:quux
|
|
//@ needs-subprocess
|
|
|
|
fn my_err(s: String) -> ! {
|
|
println!("{}", s);
|
|
panic!("quux");
|
|
}
|
|
|
|
fn main() {
|
|
if my_err("bye".to_string()) {
|
|
}
|
|
}
|