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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
395 B
Rust
Raw Normal View History

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