rust/src/test/run-pass/while-flow-graph.rs

4 lines
80 B
Rust

fn main() {
let int x = 10;
while (x == 10 && x == 11) { auto y = 0xf00; }
}