1
Fork 0
rust/tests/ui/for-loop-while/long-while.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
183 B
Rust
Raw Normal View History

// run-pass
// pretty-expanded FIXME #23616
#![allow(unused_variables)]
2013-08-17 08:37:42 -07:00
pub fn main() {
let mut i: isize = 0;
2013-08-17 08:37:42 -07:00
while i < 1000000 {
i += 1;
2015-01-25 22:05:03 +01:00
let x = 3;
2013-08-17 08:37:42 -07:00
}
}