]> git.lizzy.rs Git - rust.git/blob - tests/ui/on-unimplemented/on-impl.stderr
Rollup merge of #106797 - FawazTirmizi:dev/issues/104284, r=bjorn3
[rust.git] / tests / ui / on-unimplemented / on-impl.stderr
1 error[E0277]: the trait bound `[i32]: Index<u32>` is not satisfied
2   --> $DIR/on-impl.rs:22:47
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[E0277]: the trait bound `[i32]: Index<u32>` is not satisfied
22   --> $DIR/on-impl.rs:22:5
23    |
24 LL |     Index::<u32>::index(&[1, 2, 3] as &[i32], 2u32);
25    |     ^^^^^^^^^^^^^^^^^^^ a usize is required to index into a slice
26    |
27    = help: the trait `Index<u32>` is not implemented for `[i32]`
28    = help: the trait `Index<usize>` is implemented for `[i32]`
29
30 error: aborting due to 3 previous errors
31
32 For more information about this error, try `rustc --explain E0277`.