about summary refs log tree commit diff
path: root/src/test/run-pass/while-with-break.rs
blob: f8050e3d3eb845945fb2dbdaf5b7d623156a7b0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19



// -*- rust -*-
fn main() {
    let i: int = 90;
    while i < 100 {
        log i;
        i = i + 1;
        if i == 95 {
            let v: [int] =
                [1, 2, 3, 4, 5]; // we check that it is freed by break

            log "breaking";
            break;
        }
    }
    assert (i == 95);
}