rust/tests/ui/expr/if/expr-if-panic.rs

14 lines
199 B
Rust
Raw Normal View History

//@ run-fail
//@ error-pattern:explicit panic
//@ ignore-emscripten no processes
2011-05-21 18:07:44 +00:00
2016-05-27 02:39:36 +00:00
fn main() {
let _x = if false {
0
} else if true {
panic!()
} else {
10
};
}