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); }