diff options
Diffstat (limited to 'tests/ui/match/issue-91058.stderr')
-rw-r--r-- | tests/ui/match/issue-91058.stderr | 11 |
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`. |