Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
expr-if-panic-all.rs
blob: f915a7d9da0683a8344f22a5decfa416fad766c1 [
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
!()
}
};
}