mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
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`.
|