mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
13 lines
537 B
Plaintext
13 lines
537 B
Plaintext
error[E0050]: method `calm_down_please` has 3 parameters but the declaration in trait `TooMuch::calm_down_please` has 0
|
|
--> $DIR/method-signature-matches.rs:35:28
|
|
|
|
|
LL | fn calm_down_please() -> impl Sized;
|
|
| ------------------------------------ trait requires 0 parameters
|
|
...
|
|
LL | fn calm_down_please(_: (), _: (), _: ()) {}
|
|
| ^^^^^^^^^^^^^^^^ expected 0 parameters, found 3
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0050`.
|