summaryrefslogtreecommitdiffstats
path: root/src/test/ui/for-loop-while/while-cont.rs
blob: a864e8ef70a1cd3889a29ba875c0ff37afe32f6a (plain)
1
2
3
4
5
6
7
8
9
10
11
// run-pass
// Issue #825: Should recheck the loop condition after continuing
pub fn main() {
    let mut i = 1;
    while i > 0 {
        assert!((i > 0));
        println!("{}", i);
        i -= 1;
        continue;
    }
}