]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/tuple/wrong_argument_ice-3.stderr
Do not inline non-simple argument type errors into labels
[rust.git] / src / test / ui / tuple / wrong_argument_ice-3.stderr
index 2733fb3149b55d1f8fcf87d9ca62091987fb4c6f..968cb75db7633582680eee04cd997990409bbc1e 100644 (file)
@@ -2,10 +2,13 @@ error[E0061]: this function takes 1 argument but 2 arguments were supplied
   --> $DIR/wrong_argument_ice-3.rs:9:16
    |
 LL |         groups.push(new_group, vec![process]);
-   |                ^^^^ ---------  ------------- argument of type `Vec<&Process>` unexpected
-   |                     |
-   |                     expected tuple, found struct `Vec`
+   |                ^^^^            ------------- argument of type `Vec<&Process>` unexpected
    |
+note: expected tuple, found struct `Vec`
+  --> $DIR/wrong_argument_ice-3.rs:9:21
+   |
+LL |         groups.push(new_group, vec![process]);
+   |                     ^^^^^^^^^
    = note: expected tuple `(Vec<String>, Vec<Process>)`
              found struct `Vec<String>`
 note: associated function defined here