]> git.proxmox.com Git - rustc.git/blame - src/test/ui/pattern/usefulness/match-slice-patterns.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / pattern / usefulness / match-slice-patterns.stderr
CommitLineData
60c5eb7d 1error[E0004]: non-exhaustive patterns: `&[_, Some(_), .., None, _]` not covered
0731742a 2 --> $DIR/match-slice-patterns.rs:4:11
b7449926
XL
3 |
4LL | match list {
60c5eb7d 5 | ^^^^ pattern `&[_, Some(_), .., None, _]` not covered
532ac7d7
XL
6 |
7 = help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
b7449926
XL
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0004`.