rust/tests/ui/on-unimplemented/slice-index.rs

11 lines
175 B
Rust

// 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
}