mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
a5b639dc01
Consider `tests/ui/const-generics/generic_const_exprs/issue-102768.stderr`, the error message where it gives additional notes about where the associated type is defined, and how the dead code lint doesn't have an article, like in `tests/ui/lint/dead-code/issue-85255.stderr`. They don't have articles, so it seems unnecessary to have one here.
25 lines
744 B
Plaintext
25 lines
744 B
Plaintext
error[E0107]: method takes 0 generic arguments but 1 generic argument was supplied
|
|
--> $DIR/move-generic-to-trait-in-method-with-params.rs:14:7
|
|
|
|
|
LL | 1.bar::<i32>(0);
|
|
| ^^^ expected 0 generic arguments
|
|
|
|
|
note: method defined here, with 0 generic parameters
|
|
--> $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);
|
|
| ~~~~~~~~~~~~~~~~~~~~~
|
|
help: remove these generics
|
|
|
|
|
LL - 1.bar::<i32>(0);
|
|
LL + 1.bar(0);
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0107`.
|