rust/src/test/ui/traits/trait-impl-different-num-params.stderr

13 lines
447 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0050]: method `bar` has 1 parameter but the declaration in trait `foo::bar` has 2
--> $DIR/trait-impl-different-num-params.rs:15:12
|
LL | fn bar(&self, x: usize) -> Self;
| ----- trait requires 2 parameters
...
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`.