Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
expr
/
if-bot.rs
blob: 82c27d57aa868daea445ec2230df6039ca7d0744 [
file
]
//@ run-pass
pub
fn
main
()
{
let
i
:
isize
=
if
false
{
panic
!()
}
else
{
5
};
println
!(
"{}"
,
i
);
}