From 64d98f8ee037282c35007b64c2649055c56af1db Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:03 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/issues/issue-19086.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tests/ui/issues/issue-19086.rs (limited to 'tests/ui/issues/issue-19086.rs') diff --git a/tests/ui/issues/issue-19086.rs b/tests/ui/issues/issue-19086.rs new file mode 100644 index 000000000..42148c5f5 --- /dev/null +++ b/tests/ui/issues/issue-19086.rs @@ -0,0 +1,13 @@ +use Foo::FooB; + +enum Foo { + FooB { x: i32, y: i32 } +} + +fn main() { + let f = FooB { x: 3, y: 4 }; + match f { + FooB(a, b) => println!("{} {}", a, b), + //~^ ERROR expected tuple struct or tuple variant, found variant `FooB` + } +} -- cgit v1.2.3