mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 12:37:37 +00:00
12 lines
121 B
Rust
12 lines
121 B
Rust
//@ run-fail
|
|
//@ error-pattern:explicit panic
|
|
//@ needs-subprocess
|
|
|
|
fn f() -> ! {
|
|
panic!()
|
|
}
|
|
|
|
fn main() {
|
|
f();
|
|
}
|