mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
12 lines
150 B
Rust
12 lines
150 B
Rust
//@ run-fail
|
|
//@ error-pattern:woe
|
|
//@ ignore-emscripten no processes
|
|
|
|
fn f(a: isize) {
|
|
println!("{}", a);
|
|
}
|
|
|
|
fn main() {
|
|
f(panic!("woe"));
|
|
}
|