2023-06-14 00:20:31 -05:00
|
|
|
error[E0050]: method `calm_down_please` has 3 parameters but the declaration in trait `TooMuch::calm_down_please` has 0
|
2024-03-11 14:41:40 -05:00
|
|
|
--> $DIR/method-signature-matches.rs:33:28
|
2023-06-14 00:20:31 -05: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 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-06-14 00:20:31 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0050`.
|