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

10 lines
161 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-03 21:59:04 -05:00
fn g() -> int { let x = alt true { true => { f() } false => { 10 } }; return x; }
2011-06-10 19:27:34 -05:00
fn main() { g(); }