rust/src/test/run-pass/long-while.rs

4 lines
77 B
Rust

fn main() { let mut i: int = 0; while i < 1000000 { i += 1; let x = 3; } }