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