mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
208 B
Rust
17 lines
208 B
Rust
// run-fail
|
|
// error-pattern:quux
|
|
// ignore-emscripten no processes
|
|
|
|
fn f() -> ! {
|
|
panic!("quux")
|
|
}
|
|
fn g() -> isize {
|
|
match f() {
|
|
true => 1,
|
|
false => 0,
|
|
}
|
|
}
|
|
fn main() {
|
|
g();
|
|
}
|