2023-06-14 00:20:31 -05:00
|
|
|
error[E0050]: method `come_on_a_little_more_effort` has 0 parameters but the declaration in trait `TooLittle::come_on_a_little_more_effort` has 3
|
2023-09-13 11:04:42 -05:00
|
|
|
--> $DIR/method-signature-matches.rs:46:5
|
2023-06-14 00:20:31 -05:00
|
|
|
|
|
|
|
|
LL | fn come_on_a_little_more_effort(_: (), _: (), _: ()) -> impl Sized;
|
|
|
|
| ---------------- trait requires 3 parameters
|
|
|
|
...
|
|
|
|
LL | fn come_on_a_little_more_effort() {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 3 parameters, found 0
|
|
|
|
|
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`.
|