rust/tests/ui/consts/ct-var-in-collect_all_mismatches.stderr

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

23 lines
790 B
Plaintext
Raw Normal View History

error[E0277]: the trait bound `T: Bar<N>` is not satisfied
--> $DIR/ct-var-in-collect_all_mismatches.rs:9:14
|
LL | self.unsatisfied()
| ^^^^^^^^^^^ the trait `Bar<N>` is not implemented for `T`
|
note: required by a bound in `Foo::<T, N>::unsatisfied`
--> $DIR/ct-var-in-collect_all_mismatches.rs:15:12
|
LL | fn unsatisfied(self)
2023-02-21 05:21:07 +00:00
| ----------- required by a bound in this associated function
LL | where
LL | T: Bar<N>,
| ^^^^^^ required by this bound in `Foo::<T, N>::unsatisfied`
help: consider restricting type parameter `T`
|
LL | impl<T: Bar<N>, const N: usize> Foo<T, N> {
| ++++++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0277`.