rust/src/test/run-pass/long-while.rs
2018-12-25 21:08:33 -07:00

12 lines
171 B
Rust

// pretty-expanded FIXME #23616
#![allow(unused_variables)]
pub fn main() {
let mut i: isize = 0;
while i < 1000000 {
i += 1;
let x = 3;
}
}