rust/tests/ui/suggestions/move-generic-to-trait-in-method-with-params.rs
Michael Howell a5b639dc01 diagnostics: remove inconsistent English article "this" from E0107
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.
2023-02-23 10:27:06 -07:00

19 lines
447 B
Rust

// Generalizes the suggestion introduced in #100838
trait Foo<T> {
fn bar(&self, _: T);
}
impl Foo<i32> for i32 {
fn bar(&self, x: i32) {
println!("{}", self + x);
}
}
fn main() {
1.bar::<i32>(0);
//~^ ERROR method takes 0 generic arguments but 1 generic argument was supplied
//~| HELP consider moving this generic argument to the `Foo` trait, which takes up to 1 argument
//~| HELP remove these generics
}