]> git.lizzy.rs Git - rust.git/blob - src/test/ui/on-unimplemented/on-impl.stderr
Auto merge of #62339 - pnkfelix:issue-61188-use-visitor-for-structural-match-check...
[rust.git] / src / test / ui / on-unimplemented / on-impl.stderr
1 error[E0277]: the trait bound `[i32]: Index<u32>` is not satisfied
2   --> $DIR/on-impl.rs:22:5
3    |
4 LL |     Index::<u32>::index(&[1, 2, 3] as &[i32], 2u32);
5    |     ^^^^^^^^^^^^^^^^^^^ a usize is required to index into a slice
6    |
7    = help: the trait `Index<u32>` is not implemented for `[i32]`
8 note: required by `Index::index`
9   --> $DIR/on-impl.rs:9:5
10    |
11 LL |     fn index(&self, index: Idx) -> &Self::Output;
12    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
13
14 error[E0277]: the trait bound `[i32]: Index<u32>` is not satisfied
15   --> $DIR/on-impl.rs:22:5
16    |
17 LL |     Index::<u32>::index(&[1, 2, 3] as &[i32], 2u32);
18    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ a usize is required to index into a slice
19    |
20    = help: the trait `Index<u32>` is not implemented for `[i32]`
21
22 error: aborting due to 2 previous errors
23
24 For more information about this error, try `rustc --explain E0277`.