summaryrefslogtreecommitdiffstats
path: root/src/test/ui/argument-suggestions/extra_arguments.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/argument-suggestions/extra_arguments.rs35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/test/ui/argument-suggestions/extra_arguments.rs b/src/test/ui/argument-suggestions/extra_arguments.rs
deleted file mode 100644
index 3706ac4e8..000000000
--- a/src/test/ui/argument-suggestions/extra_arguments.rs
+++ /dev/null
@@ -1,35 +0,0 @@
-fn empty() {}
-fn one_arg(_a: i32) {}
-fn two_arg_same(_a: i32, _b: i32) {}
-fn two_arg_diff(_a: i32, _b: &str) {}
-
-fn main() {
- empty(""); //~ ERROR this function takes
-
- one_arg(1, 1); //~ ERROR this function takes
- one_arg(1, ""); //~ ERROR this function takes
- one_arg(1, "", 1.0); //~ ERROR this function takes
-
- two_arg_same(1, 1, 1); //~ ERROR this function takes
- two_arg_same(1, 1, 1.0); //~ ERROR this function takes
-
- two_arg_diff(1, 1, ""); //~ ERROR this function takes
- two_arg_diff(1, "", ""); //~ ERROR this function takes
- two_arg_diff(1, 1, "", ""); //~ ERROR this function takes
- two_arg_diff(1, "", 1, ""); //~ ERROR this function takes
-
- // Check with weird spacing and newlines
- two_arg_same(1, 1, ""); //~ ERROR this function takes
- two_arg_diff(1, 1, ""); //~ ERROR this function takes
- two_arg_same( //~ ERROR this function takes
- 1,
- 1,
- ""
- );
-
- two_arg_diff( //~ ERROR this function takes
- 1,
- 1,
- ""
- );
-}