rust/tests/ui/issues/issue-53251.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.5 KiB
Text
Raw Normal View History

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