summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/issue-94675.stderr
blob: f4683f7f5361dedcf2b4c1c25ed52989b8a5c3bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
error[E0277]: the trait bound `Vec<usize>: ~const Index<_>` is not satisfied
  --> $DIR/issue-94675.rs:9:9
   |
LL |         self.bar[0] = baz.len();
   |         ^^^^^^^^^^^ vector indices are of type `usize` or ranges of `usize`
   |
   = help: the trait `~const Index<_>` is not implemented for `Vec<usize>`
note: the trait `Index<_>` is implemented for `Vec<usize>`, but that implementation is not `const`
  --> $DIR/issue-94675.rs:9:9
   |
LL |         self.bar[0] = baz.len();
   |         ^^^^^^^^^^^

error[E0277]: the trait bound `Vec<usize>: ~const IndexMut<usize>` is not satisfied
  --> $DIR/issue-94675.rs:9:9
   |
LL |         self.bar[0] = baz.len();
   |         ^^^^^^^^^^^ vector indices are of type `usize` or ranges of `usize`
   |
   = help: the trait `~const IndexMut<usize>` is not implemented for `Vec<usize>`
note: the trait `IndexMut<usize>` is implemented for `Vec<usize>`, but that implementation is not `const`
  --> $DIR/issue-94675.rs:9:9
   |
LL |         self.bar[0] = baz.len();
   |         ^^^^^^^^^^^

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0277`.