rust/src/test/run-fail/match-disc-bot.rs

14 lines
161 B
Rust
Raw Normal View History

// error-pattern:quux
2016-05-26 21:39:36 -05:00
fn f() -> ! {
panic!("quux")
}
fn g() -> isize {
match f() {
true => 1,
false => 0,
}
}
fn main() {
g();
}