about summary refs log tree commit diff
path: root/tests/ui/for-loop-while/while-flow-graph.rs
blob: 9148b42a6061aeb68203bd5493958d0a23e9c6ca (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; } }