]> git.lizzy.rs Git - rust.git/blob - src/test/ui/pattern/usefulness/issue-30240.stderr
Auto merge of #78682 - glandium:issue78471, r=lcnr
[rust.git] / src / test / ui / pattern / usefulness / issue-30240.stderr
1 error[E0004]: non-exhaustive patterns: `&_` not covered
2   --> $DIR/issue-30240.rs:2:11
3    |
4 LL |     match "world" {
5    |           ^^^^^^^ pattern `&_` not covered
6    |
7    = help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
8    = note: the matched value is of type `&str`
9
10 error[E0004]: non-exhaustive patterns: `&_` not covered
11   --> $DIR/issue-30240.rs:6:11
12    |
13 LL |     match "world" {
14    |           ^^^^^^^ pattern `&_` not covered
15    |
16    = help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
17    = note: the matched value is of type `&str`
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0004`.