mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
20 lines
244 B
Rust
20 lines
244 B
Rust
//@ run-fail
|
|
//@ error-pattern:explicit panic
|
|
//@ ignore-emscripten no processes
|
|
|
|
fn f() -> ! {
|
|
panic!()
|
|
}
|
|
|
|
fn g() -> isize {
|
|
let x = match true {
|
|
true => f(),
|
|
false => 10,
|
|
};
|
|
return x;
|
|
}
|
|
|
|
fn main() {
|
|
g();
|
|
}
|