summary refs log tree commit diff
path: root/src/test/run-pass/while-with-break.rs
blob: 8150dc7968f4f3dc6a730a36d66aad60809b3dbf (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);
}