2023-06-14 05:20:31 +00:00
|
|
|
error[E0050]: method `calm_down_please` has 3 parameters but the declaration in trait `TooMuch::calm_down_please` has 0
|
2024-03-11 19:41:40 +00:00
|
|
|
--> $DIR/method-signature-matches.rs:33:28
|
2023-06-14 05:20:31 +00:00
|
|
|
|
|
|
|
|
LL | fn calm_down_please() -> impl Sized;
|
|
|
|
| ------------------------------------ trait requires 0 parameters
|
|
|
|
...
|
|
|
|
LL | fn calm_down_please(_: (), _: (), _: ()) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^ expected 0 parameters, found 3
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-06-14 05:20:31 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0050`.
|