9 lines
86 B
Rust
9 lines
86 B
Rust
// error-pattern:explicit panic
|
|
|
|
fn f() -> ! {
|
|
panic!()
|
|
}
|
|
|
|
fn main() {
|
|
f();
|
|
}
|