summaryrefslogtreecommitdiffstats
path: root/src/test/ui/span/issue-34264.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/span/issue-34264.rs')
-rw-r--r--src/test/ui/span/issue-34264.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/ui/span/issue-34264.rs b/src/test/ui/span/issue-34264.rs
new file mode 100644
index 000000000..5b8fc7138
--- /dev/null
+++ b/src/test/ui/span/issue-34264.rs
@@ -0,0 +1,11 @@
+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
+}