rust/tests/ui/inference/iterator-sum-array-15673.rs
2025-08-09 16:27:20 +05:00

12 lines
239 B
Rust

//! Regression test for https://github.com/rust-lang/rust/issues/15673
//@ 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>());
}