about summary refs log tree commit diff
path: root/tests/ui/expr/if-bot.rs
blob: 82c27d57aa868daea445ec2230df6039ca7d0744 (plain)
1
2
3
4
5
6
//@ run-pass

pub fn main() {
    let i: isize = if false { panic!() } else { 5 };
    println!("{}", i);
}