2018-08-08 12:28:26 +00:00
|
|
|
error[E0053]: method `foo` has an incompatible type for trait
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/impl-generic-mismatch-ab.rs:8:32
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | fn foo<B: Debug>(&self, a: &impl Debug, b: &B) { }
|
2021-04-08 20:50:47 +00:00
|
|
|
| - ^^^^^^^^^^^
|
|
|
|
| | |
|
|
|
|
| | expected type parameter `B`, found type parameter `impl Debug`
|
|
|
|
| | help: change the parameter type to match the trait: `&B`
|
2019-11-01 03:58:37 +00:00
|
|
|
| expected type parameter
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2021-12-11 02:20:41 +00:00
|
|
|
note: type in trait
|
|
|
|
--> $DIR/impl-generic-mismatch-ab.rs:4:32
|
|
|
|
|
|
|
|
|
LL | fn foo<A: Debug>(&self, a: &A, b: &impl Debug);
|
|
|
|
| ^^
|
2022-12-24 23:17:25 +00:00
|
|
|
= note: expected signature `fn(&(), &B, &impl Debug)`
|
|
|
|
found signature `fn(&(), &impl Debug, &B)`
|
2019-08-26 04:58:59 +00:00
|
|
|
= note: a type parameter was expected, but a different one was found; you might be missing a type parameter or trait bound
|
|
|
|
= note: for more information, visit https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0053`.
|