summaryrefslogtreecommitdiffstats
path: root/src/test/ui/for-loop-while/while-flow-graph.rs
blob: 1748964a7b2a04f0d7274f59e6992278cdd2638e (plain)
1
2
3
4
5
6
// run-pass


// pretty-expanded FIXME #23616

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