rust/src/test/run-fail/expr-alt-fail.rs
2011-07-27 15:54:33 +02:00

5 lines
98 B
Rust

// error-pattern:explicit failure
fn main() { let x = alt true { false { 0 } true { fail } }; }