2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: associated function takes 0 generic arguments but 1 generic argument was supplied
|
2021-04-03 11:05:11 +00:00
|
|
|
--> $DIR/issue-53251.rs:11:20
|
2018-08-13 22:28:18 +00:00
|
|
|
|
|
|
|
|
LL | S::f::<i64>();
|
2021-01-02 18:45:11 +00:00
|
|
|
| ^------- help: remove these generics
|
|
|
|
| |
|
2021-02-18 20:01:44 +00:00
|
|
|
| expected 0 generic arguments
|
2018-08-13 22:28:18 +00:00
|
|
|
...
|
|
|
|
LL | impl_add!(a b);
|
2021-10-14 18:28:28 +00:00
|
|
|
| -------------- in this macro invocation
|
2019-12-16 13:56:47 +00:00
|
|
|
|
|
2021-02-18 20:01:44 +00:00
|
|
|
note: associated function defined here, with 0 generic parameters
|
2021-04-03 11:05:11 +00:00
|
|
|
--> $DIR/issue-53251.rs:4:8
|
2021-01-02 18:45:11 +00:00
|
|
|
|
|
|
|
|
LL | fn f() {}
|
|
|
|
| ^
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `impl_add` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-08-13 22:28:18 +00:00
|
|
|
|
2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: associated function takes 0 generic arguments but 1 generic argument was supplied
|
2021-04-03 11:05:11 +00:00
|
|
|
--> $DIR/issue-53251.rs:11:20
|
2020-01-08 17:02:10 +00:00
|
|
|
|
|
|
|
|
LL | S::f::<i64>();
|
2021-01-02 18:45:11 +00:00
|
|
|
| ^------- help: remove these generics
|
|
|
|
| |
|
2021-02-18 20:01:44 +00:00
|
|
|
| expected 0 generic arguments
|
2020-01-08 17:02:10 +00:00
|
|
|
...
|
|
|
|
LL | impl_add!(a b);
|
2021-10-14 18:28:28 +00:00
|
|
|
| -------------- in this macro invocation
|
2019-12-16 13:56:47 +00:00
|
|
|
|
|
2021-02-18 20:01:44 +00:00
|
|
|
note: associated function defined here, with 0 generic parameters
|
2021-04-03 11:05:11 +00:00
|
|
|
--> $DIR/issue-53251.rs:4:8
|
2021-01-02 18:45:11 +00:00
|
|
|
|
|
|
|
|
LL | fn f() {}
|
|
|
|
| ^
|
2023-10-04 18:34:50 +00:00
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `impl_add` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-01-08 17:02:10 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-08-13 22:28:18 +00:00
|
|
|
|
2018-08-22 01:12:23 +00:00
|
|
|
For more information about this error, try `rustc --explain E0107`.
|