summary refs log tree commit diff
path: root/src/test/run-pass/long-while.rs
blob: 4a3ee6f97138781f14500a4d8d96b08ff59c5e63 (plain)
1
2
3
4
5
6
7
8
9
10
11
// pretty-expanded FIXME #23616

#![allow(unused_variables)]

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