]> git.lizzy.rs Git - rust.git/blob - src/test/ui/argument-suggestions/issue-97197.stderr
Make some diagnostics not depend on the source of what they reference being available
[rust.git] / src / test / ui / argument-suggestions / issue-97197.stderr
1 error[E0061]: this function takes 6 arguments but 2 arguments were supplied
2   --> $DIR/issue-97197.rs:2:5
3    |
4 LL |     g((), ());
5    |     ^-------- multiple arguments are missing
6    |
7 note: function defined here
8   --> $DIR/issue-97197.rs:6:8
9    |
10 LL | pub fn g(a1: (), a2: bool, a3: bool, a4: bool, a5: bool, a6: ()) -> () {}
11    |        ^ ------  --------  --------  --------  --------  ------
12 help: provide the arguments
13    |
14 LL |     g((), /* bool */, /* bool */, /* bool */, /* bool */, ());
15    |      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0061`.