```
error[E0277]: the trait bound `u32: Trait` is not satisfied
--> $DIR/trait_objects_fail.rs:26:9
|
LL | foo(&10_u32);
| ^^^^^^^ the trait `Trait` is not implemented for `u32`
|
help: the trait `Trait<12>` is not implemented for `u32`
but trait `Trait<2>` is implemented for it
--> $DIR/trait_objects_fail.rs:7:1
|
LL | impl Trait<2> for u32 {}
| ^^^^^^^^^^^^^^^^^^^^^
= note: required for the cast from `&u32` to `&dyn Trait`
```
Pointing at the `impl` definition that *could* apply given a different self type is particularly useful when it has a blanket self type, as it might not be obvious and is not trivially greppable:
```
error[E0277]: the trait bound `RawImpl<_>: Raw<_>` is not satisfied
--> $DIR/issue-62742.rs:4:5
|
LL | WrongImpl::foo(0i32);
| ^^^^^^^^^ unsatisfied trait bound
|
help: the trait `Raw<_>` is not implemented for `RawImpl<_>`
but trait `Raw<[_]>` is implemented for it
--> $DIR/issue-62742.rs:29:1
|
LL | impl<T> Raw<[T]> for RawImpl<T> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: required by a bound in `SafeImpl`
--> $DIR/issue-62742.rs:33:35
|
LL | pub struct SafeImpl<T: ?Sized, A: Raw<T>>(PhantomData<(A, T)>);
| ^^^^^^ required by this bound in `SafeImpl`
```
17 lines
587 B
Text
17 lines
587 B
Text
error[E0277]: the trait bound `Params: Plugin<i32>` is not satisfied
|
|
--> $DIR/issue-45801.rs:21:9
|
|
|
|
|
LL | req.get_ref::<Params>();
|
|
| ^^^^^^^ unsatisfied trait bound
|
|
|
|
|
help: the trait `Plugin<i32>` is not implemented for `Params`
|
|
but trait `Plugin<Foo>` is implemented for it
|
|
--> $DIR/issue-45801.rs:14:1
|
|
|
|
|
LL | impl Plugin<Foo> for Params {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
= help: for that trait implementation, expected `Foo`, found `i32`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|