]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-30240.stderr
New upstream version 1.34.2+dfsg1
[rustc.git] / src / test / ui / issues / issue-30240.stderr
CommitLineData
8faf50e0 1error[E0004]: non-exhaustive patterns: `&_` not covered
0731742a 2 --> $DIR/issue-30240.rs:2:11
8faf50e0
XL
3 |
4LL | match "world" { //~ ERROR non-exhaustive patterns: `&_`
5 | ^^^^^^^ pattern `&_` not covered
6
7error[E0004]: non-exhaustive patterns: `&_` not covered
0731742a 8 --> $DIR/issue-30240.rs:6:11
8faf50e0
XL
9 |
10LL | match "world" { //~ ERROR non-exhaustive patterns: `&_`
11 | ^^^^^^^ pattern `&_` not covered
12
13error: aborting due to 2 previous errors
14
15For more information about this error, try `rustc --explain E0004`.