about summary refs log tree commit diff
path: root/tests/ui/issues/issue-15673.rs
blob: bb61c24627643787fb836504267cb85af248c729 (plain)
1
2
3
4
5
6
7
8
9
//@ run-pass
#![allow(stable_features)]

#![feature(iter_arith)]

fn main() {
    let x: [u64; 3] = [1, 2, 3];
    assert_eq!(6, (0..3).map(|i| x[i]).sum::<u64>());
}