Files
rust/tests/ui/suggestions/suggest-dereferencing-index.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
952 B
Plaintext
Raw Normal View History

error[E0277]: the type `[{integer}]` cannot be indexed by `&usize`
--> $DIR/suggest-dereferencing-index.rs:6:42
|
LL | let one_item_please: i32 = [1, 2, 3][i];
| ^ slice indices are of type `usize` or ranges of `usize`
|
2025-03-11 17:37:36 -07:00
= help: the trait `SliceIndex<[{integer}]>` is not implemented for `&usize`
= help: the following other types implement trait `SliceIndex<T>`:
`usize` implements `SliceIndex<ByteStr>`
`usize` implements `SliceIndex<[T]>`
= note: required for `[{integer}]` to implement `Index<&usize>`
= note: 1 redundant requirement hidden
= note: required for `[{integer}; 3]` to implement `Index<&usize>`
2022-07-29 14:12:37 +09:00
help: dereference this index
|
LL | let one_item_please: i32 = [1, 2, 3][*i];
| +
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0277`.