2018-01-29 15:01:52 -05:00
|
|
|
error[E0277]: the trait bound `i32: std::slice::SliceIndex<[{integer}]>` is not satisfied
|
2017-12-10 22:47:55 +03:00
|
|
|
--> $DIR/index-help.rs:13:5
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | x[0i32]; //~ ERROR E0277
|
2018-01-29 15:01:52 -05:00
|
|
|
| ^^^^^^^ slice indices are of type `usize` or ranges of `usize`
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-01-29 15:01:52 -05:00
|
|
|
= help: the trait `std::slice::SliceIndex<[{integer}]>` is not implemented for `i32`
|
2018-03-02 23:23:00 -05:00
|
|
|
= note: required because of the requirements on the impl of `std::ops::Index<i32>` for `std::vec::Vec<{integer}>`
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|