]> git.proxmox.com Git - rustc.git/blob - tests/ui/macros/die-macro-pure.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / macros / die-macro-pure.rs
1 // run-fail
2 // error-pattern:test
3 // ignore-emscripten no processes
4
5 fn f() {
6 panic!("test");
7 }
8
9 fn main() {
10 f();
11 }