summaryrefslogtreecommitdiffstats
path: root/src/test/ui/argument-suggestions/invalid_arguments.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/argument-suggestions/invalid_arguments.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/argument-suggestions/invalid_arguments.stderr')
-rw-r--r--src/test/ui/argument-suggestions/invalid_arguments.stderr299
1 files changed, 0 insertions, 299 deletions
diff --git a/src/test/ui/argument-suggestions/invalid_arguments.stderr b/src/test/ui/argument-suggestions/invalid_arguments.stderr
deleted file mode 100644
index 303f08695..000000000
--- a/src/test/ui/argument-suggestions/invalid_arguments.stderr
+++ /dev/null
@@ -1,299 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/invalid_arguments.rs:13:11
- |
-LL | one_arg(1.0);
- | ------- ^^^ expected `i32`, found floating-point number
- | |
- | arguments to this function are incorrect
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:5:4
- |
-LL | fn one_arg(_a: i32) {}
- | ^^^^^^^ -------
-
-error[E0308]: mismatched types
- --> $DIR/invalid_arguments.rs:16:19
- |
-LL | two_arg_same(1, "");
- | ------------ ^^ expected `i32`, found `&str`
- | |
- | arguments to this function are incorrect
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:6:4
- |
-LL | fn two_arg_same(_a: i32, _b: i32) {}
- | ^^^^^^^^^^^^ -------
-
-error[E0308]: mismatched types
- --> $DIR/invalid_arguments.rs:17:16
- |
-LL | two_arg_same("", 1);
- | ------------ ^^ expected `i32`, found `&str`
- | |
- | arguments to this function are incorrect
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:6:4
- |
-LL | fn two_arg_same(_a: i32, _b: i32) {}
- | ^^^^^^^^^^^^ -------
-
-error[E0308]: arguments to this function are incorrect
- --> $DIR/invalid_arguments.rs:18:3
- |
-LL | two_arg_same("", "");
- | ^^^^^^^^^^^^ -- -- expected `i32`, found `&str`
- | |
- | expected `i32`, found `&str`
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:6:4
- |
-LL | fn two_arg_same(_a: i32, _b: i32) {}
- | ^^^^^^^^^^^^ ------- -------
-
-error[E0308]: mismatched types
- --> $DIR/invalid_arguments.rs:19:19
- |
-LL | two_arg_diff(1, "");
- | ------------ ^^ expected `f32`, found `&str`
- | |
- | arguments to this function are incorrect
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:7:4
- |
-LL | fn two_arg_diff(_a: i32, _b: f32) {}
- | ^^^^^^^^^^^^ -------
-
-error[E0308]: mismatched types
- --> $DIR/invalid_arguments.rs:20:16
- |
-LL | two_arg_diff("", 1.0);
- | ------------ ^^ expected `i32`, found `&str`
- | |
- | arguments to this function are incorrect
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:7:4
- |
-LL | fn two_arg_diff(_a: i32, _b: f32) {}
- | ^^^^^^^^^^^^ -------
-
-error[E0308]: arguments to this function are incorrect
- --> $DIR/invalid_arguments.rs:21:3
- |
-LL | two_arg_diff("", "");
- | ^^^^^^^^^^^^ -- -- expected `f32`, found `&str`
- | |
- | expected `i32`, found `&str`
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:7:4
- |
-LL | fn two_arg_diff(_a: i32, _b: f32) {}
- | ^^^^^^^^^^^^ ------- -------
-
-error[E0308]: mismatched types
- --> $DIR/invalid_arguments.rs:24:18
- |
-LL | three_arg_diff(X{}, 1.0, "");
- | -------------- ^^^ expected `i32`, found struct `X`
- | |
- | arguments to this function are incorrect
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:8:4
- |
-LL | fn three_arg_diff(_a: i32, _b: f32, _c: &str) {}
- | ^^^^^^^^^^^^^^ -------
-
-error[E0308]: mismatched types
- --> $DIR/invalid_arguments.rs:25:21
- |
-LL | three_arg_diff(1, X {}, "");
- | -------------- ^^^^ expected `f32`, found struct `X`
- | |
- | arguments to this function are incorrect
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:8:4
- |
-LL | fn three_arg_diff(_a: i32, _b: f32, _c: &str) {}
- | ^^^^^^^^^^^^^^ -------
-
-error[E0308]: mismatched types
- --> $DIR/invalid_arguments.rs:26:26
- |
-LL | three_arg_diff(1, 1.0, X {});
- | -------------- ^^^^ expected `&str`, found struct `X`
- | |
- | arguments to this function are incorrect
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:8:4
- |
-LL | fn three_arg_diff(_a: i32, _b: f32, _c: &str) {}
- | ^^^^^^^^^^^^^^ --------
-
-error[E0308]: arguments to this function are incorrect
- --> $DIR/invalid_arguments.rs:28:3
- |
-LL | three_arg_diff(X {}, X {}, "");
- | ^^^^^^^^^^^^^^ ---- ---- expected `f32`, found struct `X`
- | |
- | expected `i32`, found struct `X`
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:8:4
- |
-LL | fn three_arg_diff(_a: i32, _b: f32, _c: &str) {}
- | ^^^^^^^^^^^^^^ ------- ------- --------
-
-error[E0308]: arguments to this function are incorrect
- --> $DIR/invalid_arguments.rs:29:3
- |
-LL | three_arg_diff(X {}, 1.0, X {});
- | ^^^^^^^^^^^^^^ ---- ---- expected `&str`, found struct `X`
- | |
- | expected `i32`, found struct `X`
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:8:4
- |
-LL | fn three_arg_diff(_a: i32, _b: f32, _c: &str) {}
- | ^^^^^^^^^^^^^^ ------- ------- --------
-
-error[E0308]: arguments to this function are incorrect
- --> $DIR/invalid_arguments.rs:30:3
- |
-LL | three_arg_diff(1, X {}, X {});
- | ^^^^^^^^^^^^^^ ---- ---- expected `&str`, found struct `X`
- | |
- | expected `f32`, found struct `X`
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:8:4
- |
-LL | fn three_arg_diff(_a: i32, _b: f32, _c: &str) {}
- | ^^^^^^^^^^^^^^ ------- ------- --------
-
-error[E0308]: arguments to this function are incorrect
- --> $DIR/invalid_arguments.rs:32:3
- |
-LL | three_arg_diff(X {}, X {}, X {});
- | ^^^^^^^^^^^^^^ ---- ---- ---- expected `&str`, found struct `X`
- | | |
- | | expected `f32`, found struct `X`
- | expected `i32`, found struct `X`
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:8:4
- |
-LL | fn three_arg_diff(_a: i32, _b: f32, _c: &str) {}
- | ^^^^^^^^^^^^^^ ------- ------- --------
-
-error[E0308]: mismatched types
- --> $DIR/invalid_arguments.rs:34:20
- |
-LL | three_arg_repeat(X {}, 1, "");
- | ---------------- ^^^^ expected `i32`, found struct `X`
- | |
- | arguments to this function are incorrect
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:9:4
- |
-LL | fn three_arg_repeat(_a: i32, _b: i32, _c: &str) {}
- | ^^^^^^^^^^^^^^^^ -------
-
-error[E0308]: mismatched types
- --> $DIR/invalid_arguments.rs:35:23
- |
-LL | three_arg_repeat(1, X {}, "");
- | ---------------- ^^^^ expected `i32`, found struct `X`
- | |
- | arguments to this function are incorrect
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:9:4
- |
-LL | fn three_arg_repeat(_a: i32, _b: i32, _c: &str) {}
- | ^^^^^^^^^^^^^^^^ -------
-
-error[E0308]: mismatched types
- --> $DIR/invalid_arguments.rs:36:26
- |
-LL | three_arg_repeat(1, 1, X {});
- | ---------------- ^^^^ expected `&str`, found struct `X`
- | |
- | arguments to this function are incorrect
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:9:4
- |
-LL | fn three_arg_repeat(_a: i32, _b: i32, _c: &str) {}
- | ^^^^^^^^^^^^^^^^ --------
-
-error[E0308]: arguments to this function are incorrect
- --> $DIR/invalid_arguments.rs:38:3
- |
-LL | three_arg_repeat(X {}, X {}, "");
- | ^^^^^^^^^^^^^^^^ ---- ---- expected `i32`, found struct `X`
- | |
- | expected `i32`, found struct `X`
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:9:4
- |
-LL | fn three_arg_repeat(_a: i32, _b: i32, _c: &str) {}
- | ^^^^^^^^^^^^^^^^ ------- ------- --------
-
-error[E0308]: arguments to this function are incorrect
- --> $DIR/invalid_arguments.rs:39:3
- |
-LL | three_arg_repeat(X {}, 1, X {});
- | ^^^^^^^^^^^^^^^^ ---- ---- expected `&str`, found struct `X`
- | |
- | expected `i32`, found struct `X`
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:9:4
- |
-LL | fn three_arg_repeat(_a: i32, _b: i32, _c: &str) {}
- | ^^^^^^^^^^^^^^^^ ------- ------- --------
-
-error[E0308]: arguments to this function are incorrect
- --> $DIR/invalid_arguments.rs:40:3
- |
-LL | three_arg_repeat(1, X {}, X{});
- | ^^^^^^^^^^^^^^^^ ---- --- expected `&str`, found struct `X`
- | |
- | expected `i32`, found struct `X`
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:9:4
- |
-LL | fn three_arg_repeat(_a: i32, _b: i32, _c: &str) {}
- | ^^^^^^^^^^^^^^^^ ------- ------- --------
-
-error[E0308]: arguments to this function are incorrect
- --> $DIR/invalid_arguments.rs:42:3
- |
-LL | three_arg_repeat(X {}, X {}, X {});
- | ^^^^^^^^^^^^^^^^ ---- ---- ---- expected `&str`, found struct `X`
- | | |
- | | expected `i32`, found struct `X`
- | expected `i32`, found struct `X`
- |
-note: function defined here
- --> $DIR/invalid_arguments.rs:9:4
- |
-LL | fn three_arg_repeat(_a: i32, _b: i32, _c: &str) {}
- | ^^^^^^^^^^^^^^^^ ------- ------- --------
-
-error: aborting due to 21 previous errors
-
-For more information about this error, try `rustc --explain E0308`.