summary refs log tree commit diff
path: root/src/test/run-fail/die-macro-pure.rs
blob: cec0742d5035b49f4d193435253c449a07bf2548 (plain)
1
2
3
4
5
6
7
8
9
// error-pattern:test

fn f() {
    panic!("test");
}

fn main() {
    f();
}