]> git.lizzy.rs Git - rust.git/blob - src/test/ui/long-while.rs
Rollup merge of #61965 - phil-opp:patch-4, r=scottmcm
[rust.git] / src / test / ui / long-while.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 #![allow(unused_variables)]
5
6 pub fn main() {
7     let mut i: isize = 0;
8     while i < 1000000 {
9         i += 1;
10         let x = 3;
11     }
12 }