rust/src/test/ui/index-help.rs
2018-12-25 21:08:33 -07:00

5 lines
64 B
Rust

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