2022-05-30 13:44:24 -05: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);
|
2024-05-12 02:40:59 -05:00
|
|
|
| ^^^ - - - - unexpected argument #6 of type `F`
|
2022-08-13 00:22:47 -05:00
|
|
|
| | | |
|
2023-01-02 20:00:33 -06:00
|
|
|
| | | expected `&E`, found `E`
|
2024-05-12 02:40:59 -05:00
|
|
|
| | unexpected argument #3 of type `C`
|
|
|
|
| unexpected argument #2 of type `B`
|
2022-05-30 13:44:24 -05: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 23:45:51 -05:00
|
|
|
help: consider borrowing here
|
2022-06-08 14:33:47 -05:00
|
|
|
|
|
2022-05-29 23:45:51 -05:00
|
|
|
LL | foo(&&A, B, C, D, &E, F, G);
|
2023-04-18 14:44:27 -05:00
|
|
|
| +
|
2022-05-30 13:44:24 -05:00
|
|
|
help: remove the extra arguments
|
|
|
|
|
|
2023-01-01 01:13:36 -06:00
|
|
|
LL - foo(&&A, B, C, D, E, F, G);
|
2023-02-02 09:59:02 -06:00
|
|
|
LL + foo(&&A, D, /* &E */, G);
|
2023-01-01 01:13:36 -06:00
|
|
|
|
|
2022-05-30 13:44:24 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-05-30 13:44:24 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0061`.
|