]> git.lizzy.rs Git - rust.git/blob - src/test/ui/trait-method-number-parameters.stderr
Merge commit '05677b6bd6c938ed760835d9b1f6514992654ae3' into sync_cg_clif-2021-08-06
[rust.git] / src / test / ui / trait-method-number-parameters.stderr
1 error[E0050]: method `foo` has 2 parameters but the declaration in trait `Foo::foo` has 3
2   --> $DIR/trait-method-number-parameters.rs:7:9
3    |
4 LL |       fn foo(&mut self, x: i32, y: i32) -> i32;
5    |              ------------------------- trait requires 3 parameters
6 ...
7 LL | /         &mut self,
8 LL | |         x: i32,
9    | |______________^ expected 3 parameters, found 2
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0050`.