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

10 lines
144 B
Rust
Raw Normal View History

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