9 lines
143 B
Rust
9 lines
143 B
Rust
|
|
|
|
|
|
// error-pattern:explicit failure
|
|
fn f() -> ! { fail }
|
|
|
|
fn g() -> int { auto x = if (true) { f() } else { 10 }; ret x; }
|
|
|
|
fn main() { g(); } |