summaryrefslogtreecommitdiffstats
path: root/src/test/ui/for-loop-while/foreach-external-iterators-break.rs
blob: 7de6a4f8acb17f0ac7a2b06927efb5be8c353029 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// run-pass

pub fn main() {
    let x = [1; 100];
    let mut y = 0;
    for i in &x[..] {
        if y > 10 {
            break;
        }
        y += *i;
    }
    assert_eq!(y, 11);
}