summaryrefslogtreecommitdiffstats
path: root/src/test/ui/span/issue-34264.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/span/issue-34264.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/span/issue-34264.rs b/src/test/ui/span/issue-34264.rs
deleted file mode 100644
index 5b8fc7138..000000000
--- a/src/test/ui/span/issue-34264.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-fn foo(Option<i32>, String) {} //~ ERROR expected one of
-//~^ ERROR expected one of
-fn bar(x, y: usize) {} //~ ERROR expected one of
-
-fn main() {
- foo(Some(42), 2);
- foo(Some(42), 2, ""); //~ ERROR this function takes
- bar("", ""); //~ ERROR mismatched types
- bar(1, 2);
- bar(1, 2, 3); //~ ERROR this function takes
-}