mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-20 22:17:47 +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"));
|
|
}
|