about summary refs log tree commit diff
path: root/tests/ui/for-loop-while/while-flow-graph.rs
blob: e964d0195885c01ff4c5dabdd0b64fa39ab0dcca (plain)
1
2
3
4
5
//@ run-pass



pub fn main() { let x: isize = 10; while x == 10 && x == 11 { let _y = 0xf00_usize; } }