2022-05-30 11:44:24 -07:00
|
|
|
error[E0061]: this function takes 4 arguments but 7 arguments were supplied
|
|
|
|
--> $DIR/issue-97484.rs:12:5
|
|
|
|
|
|
|
|
|
LL | foo(&&A, B, C, D, E, F, G);
|
2023-02-01 17:38:56 +00:00
|
|
|
| ^^^ - - - - unexpected argument of type `F`
|
2022-08-13 05:22:47 +00:00
|
|
|
| | | |
|
2023-01-02 18:00:33 -08:00
|
|
|
| | | expected `&E`, found `E`
|
2023-02-01 17:38:56 +00:00
|
|
|
| | unexpected argument of type `C`
|
|
|
|
| unexpected argument of type `B`
|
2022-05-30 11:44:24 -07:00
|
|
|
|
|
|
|
|
note: function defined here
|
|
|
|
--> $DIR/issue-97484.rs:9:4
|
|
|
|
|
|
|
|
|
LL | fn foo(a: &A, d: D, e: &E, g: G) {}
|
|
|
|
| ^^^ ----- ---- ----- ----
|
2022-05-29 21:45:51 -07:00
|
|
|
help: consider borrowing here
|
2022-06-08 22:33:47 +03:00
|
|
|
|
|
2022-05-29 21:45:51 -07:00
|
|
|
LL | foo(&&A, B, C, D, &E, F, G);
|
2023-04-18 19:44:27 +00:00
|
|
|
| +
|
2022-05-30 11:44:24 -07:00
|
|
|
help: remove the extra arguments
|
|
|
|
|
|
2022-12-31 23:13:36 -08:00
|
|
|
LL - foo(&&A, B, C, D, E, F, G);
|
2023-02-02 15:59:02 +00:00
|
|
|
LL + foo(&&A, D, /* &E */, G);
|
2022-12-31 23:13:36 -08:00
|
|
|
|
|
2022-05-30 11:44:24 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0061`.
|