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