summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pattern/usefulness/tuple-struct-nonexhaustive.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/pattern/usefulness/tuple-struct-nonexhaustive.rs')
-rw-r--r--src/test/ui/pattern/usefulness/tuple-struct-nonexhaustive.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ui/pattern/usefulness/tuple-struct-nonexhaustive.rs b/src/test/ui/pattern/usefulness/tuple-struct-nonexhaustive.rs
new file mode 100644
index 000000000..76bcf3fbd
--- /dev/null
+++ b/src/test/ui/pattern/usefulness/tuple-struct-nonexhaustive.rs
@@ -0,0 +1,9 @@
+struct Foo(isize, isize);
+
+fn main() {
+ let x = Foo(1, 2);
+ match x { //~ ERROR non-exhaustive
+ Foo(1, b) => println!("{}", b),
+ Foo(2, b) => println!("{}", b)
+ }
+}