summaryrefslogtreecommitdiffstats
path: root/tests/ui/match/issue-91058.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/match/issue-91058.stderr')
-rw-r--r--tests/ui/match/issue-91058.stderr11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/match/issue-91058.stderr b/tests/ui/match/issue-91058.stderr
new file mode 100644
index 000000000..ec1d7e21f
--- /dev/null
+++ b/tests/ui/match/issue-91058.stderr
@@ -0,0 +1,11 @@
+error[E0308]: mismatched types
+ --> $DIR/issue-91058.rs:7:10
+ |
+LL | match array {
+ | ----- this expression has type `[S; 1]`
+LL | [()] => {}
+ | ^^ expected struct `S`, found `()`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0308`.