summary refs log tree commit diff
path: root/src/test/run-pass/long-while.rs
blob: f9c7bfd4c7c50ef658334b06bbf093b4ccf01204 (plain)
1
2
3


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