]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/die-macro-pure.rs
Move /src/test to /tests
[rust.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 }