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



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

            #debug("breaking");
            break;
        }
    }
    assert (i == 95);
}