]> git.lizzy.rs Git - rust.git/blob - src/test/ui/long-while.rs
Auto merge of #87870 - WaffleLapkin:pub_split_at_unchecked, r=dtolnay
[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 }