rustc/tests/ui/indexing/index-help.rs
2024-05-27 22:45:50 +02:00

5 lines
64 B
Rust

fn main() {
let x = vec![1];
x[0i32]; //~ ERROR E0277
}