]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/argument-suggestions/issue-97197.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / argument-suggestions / issue-97197.stderr
index 982186dc7821decd74ece04dfb67846be1e448b1..ac54adc5eeb92997f9f3ce007d0c40b4ebc7f90c 100644 (file)
@@ -2,15 +2,17 @@ error[E0061]: this function takes 6 arguments but 2 arguments were supplied
   --> $DIR/issue-97197.rs:2:5
    |
 LL |     g((), ());
-   |     ^ --  -- supplied 2 arguments
-   |     |
-   |     expected 6 arguments
+   |     ^-------- multiple arguments are missing
    |
 note: function defined here
   --> $DIR/issue-97197.rs:6:8
    |
 LL | pub fn g(a1: (), a2: bool, a3: bool, a4: bool, a5: bool, a6: ()) -> () {}
    |        ^ ------  --------  --------  --------  --------  ------
+help: provide the arguments
+   |
+LL |     g((), /* bool */, /* bool */, /* bool */, /* bool */, ());
+   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 error: aborting due to previous error