mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
202 B
Rust
13 lines
202 B
Rust
//@ run-fail
|
|
//@ error-pattern:quux
|
|
//@ ignore-emscripten no processes
|
|
|
|
fn my_err(s: String) -> ! {
|
|
println!("{}", s);
|
|
panic!("quux");
|
|
}
|
|
|
|
fn main() {
|
|
3_usize == my_err("bye".to_string());
|
|
}
|