rust/tests/ui/consts/ct-var-in-collect_all_mismatches.stderr
Nilstrieb 41e8d152dc Show number in error message even for one error
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-11-24 19:15:52 +01:00

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`.