1 2 3 4 5 6 7 8 9 10
// Test new Index error message for slices use std::ops::Index; fn main() { let x = &[1, 2, 3] as &[i32]; x[1i32]; //~ ERROR E0277 x[..1i32]; //~ ERROR E0277 }