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

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