2023-02-23 11:27:06 -06:00
|
|
|
error[E0107]: method takes 0 generic arguments but 1 generic argument was supplied
|
2022-09-04 19:23:02 -05:00
|
|
|
--> $DIR/move-generic-to-trait-in-method-with-params.rs:14:7
|
|
|
|
|
|
|
|
|
LL | 1.bar::<i32>(0);
|
|
|
|
| ^^^ expected 0 generic arguments
|
|
|
|
|
|
2023-02-21 15:11:08 -06:00
|
|
|
note: method defined here, with 0 generic parameters
|
2022-09-04 19:23:02 -05:00
|
|
|
--> $DIR/move-generic-to-trait-in-method-with-params.rs:4:8
|
|
|
|
|
|
|
|
|
LL | fn bar(&self, _: T);
|
|
|
|
| ^^^
|
|
|
|
help: consider moving this generic argument to the `Foo` trait, which takes up to 1 argument
|
|
|
|
|
|
|
|
|
LL | Foo::<i32>::bar(1, 0);
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~
|
2024-07-04 20:28:24 -05:00
|
|
|
help: remove the unnecessary generics
|
2022-09-04 19:23:02 -05:00
|
|
|
|
|
|
|
|
LL - 1.bar::<i32>(0);
|
|
|
|
LL + 1.bar(0);
|
|
|
|
|
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-09-04 19:23:02 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0107`.
|