rust/src/test/run-fail/expr-if-fail-fn.rs

10 lines
144 B
Rust
Raw Normal View History

2011-06-10 19:27:34 -05:00
// error-pattern:explicit failure
2011-06-10 19:27:34 -05:00
fn f() -> ! { fail }
2012-08-01 19:30:05 -05:00
fn g() -> int { let x = if true { f() } else { 10 }; return x; }
2011-06-10 19:27:34 -05:00
fn main() { g(); }