summaryrefslogtreecommitdiffstats
path: root/src/test/ui/argument-suggestions/invalid_arguments.rs
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.rs
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.rs')
-rw-r--r--src/test/ui/argument-suggestions/invalid_arguments.rs43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/test/ui/argument-suggestions/invalid_arguments.rs b/src/test/ui/argument-suggestions/invalid_arguments.rs
deleted file mode 100644
index 53fbdd4b5..000000000
--- a/src/test/ui/argument-suggestions/invalid_arguments.rs
+++ /dev/null
@@ -1,43 +0,0 @@
-// More nuanced test cases for invalid arguments #65853
-
-struct X {}
-
-fn one_arg(_a: i32) {}
-fn two_arg_same(_a: i32, _b: i32) {}
-fn two_arg_diff(_a: i32, _b: f32) {}
-fn three_arg_diff(_a: i32, _b: f32, _c: &str) {}
-fn three_arg_repeat(_a: i32, _b: i32, _c: &str) {}
-
-fn main() {
- // Providing an incorrect argument for a single parameter function
- one_arg(1.0); //~ ERROR mismatched types
-
- // Providing one or two invalid arguments to a two parameter function
- two_arg_same(1, ""); //~ ERROR mismatched types
- two_arg_same("", 1); //~ ERROR mismatched types
- two_arg_same("", ""); //~ ERROR arguments to this function are incorrect
- two_arg_diff(1, ""); //~ ERROR mismatched types
- two_arg_diff("", 1.0); //~ ERROR mismatched types
- two_arg_diff("", ""); //~ ERROR arguments to this function are incorrect
-
- // Providing invalid arguments to a three parameter function
- three_arg_diff(X{}, 1.0, ""); //~ ERROR mismatched types
- three_arg_diff(1, X {}, ""); //~ ERROR mismatched types
- three_arg_diff(1, 1.0, X {}); //~ ERROR mismatched types
-
- three_arg_diff(X {}, X {}, ""); //~ ERROR arguments to this function are incorrect
- three_arg_diff(X {}, 1.0, X {}); //~ ERROR arguments to this function are incorrect
- three_arg_diff(1, X {}, X {}); //~ ERROR arguments to this function are incorrect
-
- three_arg_diff(X {}, X {}, X {}); //~ ERROR arguments to this function are incorrect
-
- three_arg_repeat(X {}, 1, ""); //~ ERROR mismatched types
- three_arg_repeat(1, X {}, ""); //~ ERROR mismatched types
- three_arg_repeat(1, 1, X {}); //~ ERROR mismatched types
-
- three_arg_repeat(X {}, X {}, ""); //~ ERROR arguments to this function are incorrect
- three_arg_repeat(X {}, 1, X {}); //~ ERROR arguments to this function are incorrect
- three_arg_repeat(1, X {}, X{}); //~ ERROR arguments to this function are incorrect
-
- three_arg_repeat(X {}, X {}, X {}); //~ ERROR arguments to this function are incorrect
-}