Sign in
fuchsia
/
third_party
/
rust
/
15adfb9cd5b029268e1470a41391d91859b0a1f8
/
.
/
tests
/
ui
/
expr-if-panic-all.rs
blob: 2ba2a36d165b512ff44c9debba7e30c3bc95a06d [
file
] [
log
] [
blame
]
//@ run-pass
// When all branches of an if expression result in panic, the entire if
// expression results in panic.
pub
fn
main
()
{
let
_x
=
if
true
{
10
}
else
{
if
true
{
panic
!()
}
else
{
panic
!()
}
};
}