summaryrefslogtreecommitdiffstats
path: root/src/test/ui/for-loop-while/foreach-external-iterators-loop.rs
blob: 78af195bc209acc3f1ae40de7d2a57f10cd58dbf (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 (n,i) in x.iter().enumerate() {
        if n < 10 {
            continue;
        }
        y += *i;
    }
    assert_eq!(y, 90);
}