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

19 lines
395 B
Rust
Raw Normal View History

// run-pass
fn test_if_panic() {
2015-01-25 21:05:03 +00:00
let x = if false { panic!() } else { 10 };
assert_eq!(x, 10);
}
2011-05-21 18:07:44 +00:00
fn test_else_panic() {
2015-01-25 21:05:03 +00:00
let x = if true { 10 } else { panic!() };
assert_eq!(x, 10);
2011-05-21 18:07:44 +00:00
}
fn test_elseif_panic() {
2015-01-25 21:05:03 +00:00
let x = if false { 0 } else if false { panic!() } else { 10 };
assert_eq!(x, 10);
2011-05-21 18:07:44 +00:00
}
pub fn main() { test_if_panic(); test_else_panic(); test_elseif_panic(); }