mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 00:39:15 +00:00
11 lines
175 B
Rust
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
|
|
}
|