mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
16 lines
208 B
Rust
16 lines
208 B
Rust
//@ run-fail
|
|
//@ error-pattern:diverging_fn called
|
|
//@ ignore-emscripten no processes
|
|
|
|
fn diverging_fn() -> ! {
|
|
panic!("diverging_fn called")
|
|
}
|
|
|
|
fn mir() {
|
|
diverging_fn();
|
|
}
|
|
|
|
fn main() {
|
|
mir();
|
|
}
|