]> git.lizzy.rs Git - rust.git/blob - src/test/ui/integral-indexing.stderr
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[rust.git] / src / test / ui / integral-indexing.stderr
1 error[E0277]: the type `[isize]` cannot be indexed by `u8`
2   --> $DIR/integral-indexing.rs:6:5
3    |
4 LL |     v[3u8];
5    |     ^^^^^^ slice indices are of type `usize` or ranges of `usize`
6    |
7    = help: the trait `std::slice::SliceIndex<[isize]>` is not implemented for `u8`
8    = note: required because of the requirements on the impl of `std::ops::Index<u8>` for `std::vec::Vec<isize>`
9
10 error[E0277]: the type `[isize]` cannot be indexed by `i8`
11   --> $DIR/integral-indexing.rs:7:5
12    |
13 LL |     v[3i8];
14    |     ^^^^^^ slice indices are of type `usize` or ranges of `usize`
15    |
16    = help: the trait `std::slice::SliceIndex<[isize]>` is not implemented for `i8`
17    = note: required because of the requirements on the impl of `std::ops::Index<i8>` for `std::vec::Vec<isize>`
18
19 error[E0277]: the type `[isize]` cannot be indexed by `u32`
20   --> $DIR/integral-indexing.rs:8:5
21    |
22 LL |     v[3u32];
23    |     ^^^^^^^ slice indices are of type `usize` or ranges of `usize`
24    |
25    = help: the trait `std::slice::SliceIndex<[isize]>` is not implemented for `u32`
26    = note: required because of the requirements on the impl of `std::ops::Index<u32>` for `std::vec::Vec<isize>`
27
28 error[E0277]: the type `[isize]` cannot be indexed by `i32`
29   --> $DIR/integral-indexing.rs:9:5
30    |
31 LL |     v[3i32];
32    |     ^^^^^^^ slice indices are of type `usize` or ranges of `usize`
33    |
34    = help: the trait `std::slice::SliceIndex<[isize]>` is not implemented for `i32`
35    = note: required because of the requirements on the impl of `std::ops::Index<i32>` for `std::vec::Vec<isize>`
36
37 error[E0277]: the type `[u8]` cannot be indexed by `u8`
38   --> $DIR/integral-indexing.rs:12:5
39    |
40 LL |     s.as_bytes()[3u8];
41    |     ^^^^^^^^^^^^^^^^^ slice indices are of type `usize` or ranges of `usize`
42    |
43    = help: the trait `std::slice::SliceIndex<[u8]>` is not implemented for `u8`
44    = note: required because of the requirements on the impl of `std::ops::Index<u8>` for `[u8]`
45
46 error[E0277]: the type `[u8]` cannot be indexed by `i8`
47   --> $DIR/integral-indexing.rs:13:5
48    |
49 LL |     s.as_bytes()[3i8];
50    |     ^^^^^^^^^^^^^^^^^ slice indices are of type `usize` or ranges of `usize`
51    |
52    = help: the trait `std::slice::SliceIndex<[u8]>` is not implemented for `i8`
53    = note: required because of the requirements on the impl of `std::ops::Index<i8>` for `[u8]`
54
55 error[E0277]: the type `[u8]` cannot be indexed by `u32`
56   --> $DIR/integral-indexing.rs:14:5
57    |
58 LL |     s.as_bytes()[3u32];
59    |     ^^^^^^^^^^^^^^^^^^ slice indices are of type `usize` or ranges of `usize`
60    |
61    = help: the trait `std::slice::SliceIndex<[u8]>` is not implemented for `u32`
62    = note: required because of the requirements on the impl of `std::ops::Index<u32>` for `[u8]`
63
64 error[E0277]: the type `[u8]` cannot be indexed by `i32`
65   --> $DIR/integral-indexing.rs:15:5
66    |
67 LL |     s.as_bytes()[3i32];
68    |     ^^^^^^^^^^^^^^^^^^ slice indices are of type `usize` or ranges of `usize`
69    |
70    = help: the trait `std::slice::SliceIndex<[u8]>` is not implemented for `i32`
71    = note: required because of the requirements on the impl of `std::ops::Index<i32>` for `[u8]`
72
73 error: aborting due to 8 previous errors
74
75 For more information about this error, try `rustc --explain E0277`.