]> git.lizzy.rs Git - rust.git/blob - src/test/ui/index-help.stderr
Rollup merge of #93112 - pietroalbini:pa-cve-2022-21658-nightly, r=pietroalbini
[rust.git] / src / test / ui / index-help.stderr
1 error[E0277]: the type `[{integer}]` cannot be indexed by `i32`
2   --> $DIR/index-help.rs:3:5
3    |
4 LL |     x[0i32];
5    |     ^^^^^^^ slice indices are of type `usize` or ranges of `usize`
6    |
7    = help: the trait `SliceIndex<[{integer}]>` is not implemented for `i32`
8    = note: required because of the requirements on the impl of `Index<i32>` for `Vec<{integer}>`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0277`.