mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
23 lines
790 B
Plaintext
23 lines
790 B
Plaintext
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)
|
|
| ----------- 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`.
|