diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/binding/pattern-in-closure.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/binding/pattern-in-closure.rs b/src/test/ui/binding/pattern-in-closure.rs new file mode 100644 index 000000000..3ac8d5768 --- /dev/null +++ b/src/test/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 }); +} |