summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/in-trait/method-signature-matches.too_many.stderr
blob: 616cbd2905c794ac17a8e0181f6618008f003f95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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:36: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 previous error

For more information about this error, try `rustc --explain E0050`.