about summary refs log tree commit diff
path: root/tests/ui/fn/expr-fn-panic.rs
blob: 23946b7533d66c0d322756bbb2eda3341eb7133d (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ run-fail
//@ error-pattern:explicit panic
//@ ignore-emscripten no processes

fn f() -> ! {
    panic!()
}

fn main() {
    f();
}