summaryrefslogtreecommitdiffstats
path: root/src/test/ui/for-loop-while/while-with-break.rs
blob: a9d52dda544e97c0dd7ea20760d383f8ae6c864f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// run-pass

pub fn main() {
    let mut i: isize = 90;
    while i < 100 {
        println!("{}", i);
        i = i + 1;
        if i == 95 {
            let _v: Vec<isize> =
                vec![1, 2, 3, 4, 5]; // we check that it is freed by break

            println!("breaking");
            break;
        }
    }
    assert_eq!(i, 95);
}