1
Fork 0
rust/tests/ui/suggestions/move-generic-to-trait-in-method-with-params.stderr
Esteban Küber f0845adb0c Show diff suggestion format on verbose replacement
```
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
  --> $DIR/attempted-access-non-fatal.rs:7:15
   |
LL |     let _ = 2.l;
   |               ^
   |
help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix
   |
LL -     let _ = 2.l;
LL +     let _ = 2.0f64;
   |
```
2025-02-10 20:21:39 +00:00

25 lines
756 B
Text

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 - 1.bar::<i32>(0);
LL + Foo::<i32>::bar(1, 0);
|
help: remove the unnecessary generics
|
LL - 1.bar::<i32>(0);
LL + 1.bar(0);
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0107`.