]> git.lizzy.rs Git - rust.git/blob - src/test/ui/on-unimplemented/on-impl.stderr
:arrow_up: rust-analyzer
[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:25
3    |
4 LL |     Index::<u32>::index(&[1, 2, 3] as &[i32], 2u32);
5    |     ------------------- ^^^^^^^^^^^^^^^^^^^^ a usize is required to index into a slice
6    |     |
7    |     required by a bound introduced by this call
8    |
9    = help: the trait `Index<u32>` is not implemented for `[i32]`
10    = help: the trait `Index<usize>` is implemented for `[i32]`
11
12 error[E0277]: the trait bound `[i32]: Index<u32>` is not satisfied
13   --> $DIR/on-impl.rs:22:5
14    |
15 LL |     Index::<u32>::index(&[1, 2, 3] as &[i32], 2u32);
16    |     ^^^^^^^^^^^^^^^^^^^ a usize is required to index into a slice
17    |
18    = help: the trait `Index<u32>` is not implemented for `[i32]`
19    = help: the trait `Index<usize>` is implemented for `[i32]`
20
21 error: aborting due to 2 previous errors
22
23 For more information about this error, try `rustc --explain E0277`.