summaryrefslogtreecommitdiffstats
path: root/src/test/ui/match/issue-91058.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/match/issue-91058.rs')
-rw-r--r--src/test/ui/match/issue-91058.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/match/issue-91058.rs b/src/test/ui/match/issue-91058.rs
deleted file mode 100644
index 4845937d5..000000000
--- a/src/test/ui/match/issue-91058.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-struct S(());
-
-fn main() {
- let array = [S(())];
-
- match array {
- [()] => {}
- //~^ ERROR mismatched types [E0308]
- _ => {}
- }
-}