2018-12-16 21:21:47 -06:00
|
|
|
error[E0050]: method `bar` has 1 parameter but the declaration in trait `Foo::bar` has 2
|
2021-02-08 16:15:45 -06:00
|
|
|
--> $DIR/impl-different-num-params.rs:5:12
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | fn bar(&self, x: usize) -> Self;
|
2018-12-08 13:04:14 -06:00
|
|
|
| --------------- trait requires 2 parameters
|
2018-08-08 07:28:26 -05:00
|
|
|
...
|
|
|
|
LL | fn bar(&self) -> isize {
|
|
|
|
| ^^^^^ expected 2 parameters, found 1
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0050`.
|