about summary refs log tree commit diff
path: root/tests/ui/binding/pattern-in-closure.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/binding/pattern-in-closure.rs')
-rw-r--r--tests/ui/binding/pattern-in-closure.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/binding/pattern-in-closure.rs b/tests/ui/binding/pattern-in-closure.rs
new file mode 100644
index 00000000000..3ac8d57681a
--- /dev/null
+++ b/tests/ui/binding/pattern-in-closure.rs
@@ -0,0 +1,14 @@
+// run-pass
+#![allow(non_shorthand_field_patterns)]
+
+struct Foo {
+    x: isize,
+    y: isize
+}
+
+pub fn main() {
+    let f = |(x, _): (isize, isize)| println!("{}", x + 1);
+    let g = |Foo { x: x, y: _y }: Foo| println!("{}", x + 1);
+    f((2, 3));
+    g(Foo { x: 1, y: 2 });
+}