2017-06-30 19:06:51 -05:00
|
|
|
error[E0277]: the trait bound `[i32]: Index<u32>` is not satisfied
|
|
|
|
--> $DIR/on-impl.rs:32:5
|
|
|
|
|
|
|
|
|
32 | Index::<u32>::index(&[1, 2, 3] as &[i32], 2u32);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ a usize is required to index into a slice
|
|
|
|
|
|
|
|
|
= help: the trait `Index<u32>` is not implemented for `[i32]`
|
2018-01-15 16:26:36 -06:00
|
|
|
note: required by `Index::index`
|
|
|
|
--> $DIR/on-impl.rs:19:5
|
|
|
|
|
|
|
|
|
19 | fn index(&self, index: Idx) -> &Self::Output;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-06-30 19:06:51 -05:00
|
|
|
|
|
|
|
error[E0277]: the trait bound `[i32]: Index<u32>` is not satisfied
|
|
|
|
--> $DIR/on-impl.rs:32:5
|
|
|
|
|
|
|
|
|
32 | Index::<u32>::index(&[1, 2, 3] as &[i32], 2u32);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ a usize is required to index into a slice
|
|
|
|
|
|
|
|
|
= help: the trait `Index<u32>` is not implemented for `[i32]`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0277"
|