]> git.proxmox.com Git - rustc.git/blob - src/test/ui/argument-suggestions/issue-97484.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / argument-suggestions / issue-97484.stderr
1 error[E0061]: this function takes 4 arguments but 7 arguments were supplied
2 --> $DIR/issue-97484.rs:12:5
3 |
4 LL | foo(&&A, B, C, D, E, F, G);
5 | ^^^ - - - argument unexpected
6 | | |
7 | | argument of type `&E` unexpected
8 | argument of type `D` unexpected
9 |
10 note: function defined here
11 --> $DIR/issue-97484.rs:9:4
12 |
13 LL | fn foo(a: &A, d: D, e: &E, g: G) {}
14 | ^^^ ----- ---- ----- ----
15 help: consider removing the ``
16 |
17 LL - foo(&&A, B, C, D, E, F, G);
18 LL + foo(&&A, B, C, D, E, F, G);
19 |
20 help: remove the extra arguments
21 |
22 LL | foo(&&A, D, /* &E */, G);
23 | ~~~~~~~~~~~~~~~~~~~~~~~~
24
25 error: aborting due to previous error
26
27 For more information about this error, try `rustc --explain E0061`.