]> git.proxmox.com Git - rustc.git/blame - src/test/ui/panics/panic-arg.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / panics / panic-arg.rs
CommitLineData
f9f354fc 1// run-fail
223e47cc 2// error-pattern:woe
f9f354fc
XL
3// ignore-emscripten no processes
4
3157f602
XL
5fn f(a: isize) {
6 println!("{}", a);
7}
223e47cc 8
3157f602
XL
9fn main() {
10 f(panic!("woe"));
11}