2022-09-05 00:23:02 +00:00
|
|
|
// 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);
|
2023-02-23 17:27:06 +00:00
|
|
|
//~^ ERROR method takes 0 generic arguments but 1 generic argument was supplied
|
2022-09-05 00:23:02 +00:00
|
|
|
//~| HELP consider moving this generic argument to the `Foo` trait, which takes up to 1 argument
|
2024-07-05 01:28:24 +00:00
|
|
|
//~| HELP remove the unnecessary generics
|
2022-09-05 00:23:02 +00:00
|
|
|
}
|