]> git.lizzy.rs Git - rust.git/blob - tests/ui/indexing-requires-a-uint.stderr
Rollup merge of #107091 - clubby789:infer-ftl-missing-dollar, r=compiler-errors
[rust.git] / tests / ui / indexing-requires-a-uint.stderr
1 error[E0277]: the type `[{integer}]` cannot be indexed by `u8`
2   --> $DIR/indexing-requires-a-uint.rs:6:9
3    |
4 LL |     [0][0u8];
5    |         ^^^ slice indices are of type `usize` or ranges of `usize`
6    |
7    = help: the trait `SliceIndex<[{integer}]>` is not implemented for `u8`
8    = help: the trait `SliceIndex<[T]>` is implemented for `usize`
9    = note: required for `[{integer}]` to implement `Index<u8>`
10
11 error[E0308]: mismatched types
12   --> $DIR/indexing-requires-a-uint.rs:12:18
13    |
14 LL |     bar::<isize>(i);  // i should not be re-coerced back to an isize
15    |     ------------ ^ expected `isize`, found `usize`
16    |     |
17    |     arguments to this function are incorrect
18    |
19 note: function defined here
20   --> $DIR/indexing-requires-a-uint.rs:5:8
21    |
22 LL |     fn bar<T>(_: T) {}
23    |        ^^^    ----
24 help: you can convert a `usize` to an `isize` and panic if the converted value doesn't fit
25    |
26 LL |     bar::<isize>(i.try_into().unwrap());  // i should not be re-coerced back to an isize
27    |                   ++++++++++++++++++++
28
29 error: aborting due to 2 previous errors
30
31 Some errors have detailed explanations: E0277, E0308.
32 For more information about an error, try `rustc --explain E0277`.