2018-05-21 09:59:37 +02:00
|
|
|
error[E0643]: method `foo` has incompatible signature for trait
|
2020-04-01 04:10:13 +03:00
|
|
|
--> $DIR/impl-generic-mismatch.rs:8:12
|
2018-05-21 09:59:37 +02:00
|
|
|
|
|
|
|
|
LL | fn foo(&self, _: &impl Debug);
|
2018-05-21 18:06:28 +02:00
|
|
|
| ---------- declaration in trait here
|
2018-05-21 09:59:37 +02:00
|
|
|
...
|
|
|
|
LL | fn foo<U: Debug>(&self, _: &U) { }
|
2018-05-21 18:06:28 +02:00
|
|
|
| ^ expected `impl Trait`, found generic parameter
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2018-05-21 18:06:28 +02:00
|
|
|
help: try removing the generic parameter and using `impl Trait` instead
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn foo<U: Debug>(&self, _: &U) { }
|
|
|
|
LL + fn foo(&self, _: &impl Debug) { }
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2018-05-21 09:59:37 +02:00
|
|
|
|
|
|
|
error[E0643]: method `bar` has incompatible signature for trait
|
2020-04-01 04:10:13 +03:00
|
|
|
--> $DIR/impl-generic-mismatch.rs:17:23
|
2018-05-21 09:59:37 +02:00
|
|
|
|
|
|
|
|
LL | fn bar<U: Debug>(&self, _: &U);
|
2018-05-21 18:06:28 +02:00
|
|
|
| - declaration in trait here
|
2018-05-21 09:59:37 +02:00
|
|
|
...
|
|
|
|
LL | fn bar(&self, _: &impl Debug) { }
|
2018-05-21 18:06:28 +02:00
|
|
|
| ^^^^^^^^^^ expected generic parameter, found `impl Trait`
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2018-05-21 18:06:28 +02:00
|
|
|
help: try changing the `impl Trait` argument to a generic parameter
|
|
|
|
|
|
2018-05-24 10:01:13 -07:00
|
|
|
LL | fn bar<U: Debug>(&self, _: &U) { }
|
2021-06-21 19:07:19 -07:00
|
|
|
| ++++++++++ ~
|
2018-05-21 09:59:37 +02:00
|
|
|
|
2022-08-24 14:09:55 +09:00
|
|
|
error[E0643]: method `baz` has incompatible signature for trait
|
|
|
|
--> $DIR/impl-generic-mismatch.rs:26:33
|
|
|
|
|
|
|
|
|
LL | fn baz<U: Debug, T: Debug>(&self, _: &U, _: &T);
|
|
|
|
| - declaration in trait here
|
|
|
|
...
|
|
|
|
LL | fn baz<T: Debug>(&self, _: &impl Debug, _: &T) { }
|
|
|
|
| ^^^^^^^^^^ expected generic parameter, found `impl Trait`
|
|
|
|
|
|
|
|
|
help: try changing the `impl Trait` argument to a generic parameter
|
|
|
|
|
|
|
|
|
LL | fn baz<U: Debug, T: Debug>(&self, _: &T, _: &T) { }
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~ ~
|
|
|
|
|
2018-05-21 09:59:37 +02:00
|
|
|
error[E0643]: method `hash` has incompatible signature for trait
|
2022-08-24 14:09:55 +09:00
|
|
|
--> $DIR/impl-generic-mismatch.rs:37:33
|
2018-05-21 09:59:37 +02:00
|
|
|
|
|
|
|
|
LL | fn hash(&self, hasher: &mut impl Hasher) {}
|
2018-05-21 18:06:28 +02:00
|
|
|
| ^^^^^^^^^^^ expected generic parameter, found `impl Trait`
|
2022-12-09 15:56:23 +00:00
|
|
|
--> $SRC_DIR/core/src/hash/mod.rs:LL:COL
|
2021-06-10 13:52:00 +02:00
|
|
|
|
|
2022-12-09 15:56:23 +00:00
|
|
|
= note: declaration in trait here
|
2018-05-21 09:59:37 +02:00
|
|
|
|
2022-08-24 14:09:55 +09:00
|
|
|
error: aborting due to 4 previous errors
|
2018-05-21 09:59:37 +02:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0643`.
|