rust/src/test/ui/index-help.stderr

13 lines
522 B
Plaintext
Raw Normal View History

error[E0277]: the type `[{integer}]` cannot be indexed by `i32`
2018-12-25 09:56:47 -06:00
--> $DIR/index-help.rs:3:5
|
2018-02-22 18:42:32 -06:00
LL | x[0i32]; //~ ERROR E0277
2018-01-29 14:01:52 -06:00
| ^^^^^^^ slice indices are of type `usize` or ranges of `usize`
|
2018-01-29 14:01:52 -06:00
= help: the trait `std::slice::SliceIndex<[{integer}]>` is not implemented for `i32`
= note: required because of the requirements on the impl of `std::ops::Index<i32>` for `std::vec::Vec<{integer}>`
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0277`.