2019-01-14 07:10:45 -06:00
|
|
|
error[E0277]: the type `[{integer}]` cannot be indexed by `i32`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/index-help.rs:3:5
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
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`
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-01-29 14:01:52 -06:00
|
|
|
= help: the trait `std::slice::SliceIndex<[{integer}]>` is not implemented for `i32`
|
2018-03-02 22:23:00 -06:00
|
|
|
= note: required because of the requirements on the impl of `std::ops::Index<i32>` for `std::vec::Vec<{integer}>`
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|