]> git.proxmox.com Git - rustc.git/blame - src/test/ui/match/match-unresolved-one-arm.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / match / match-unresolved-one-arm.stderr
CommitLineData
8faf50e0 1error[E0282]: type annotations needed
0731742a 2 --> $DIR/match-unresolved-one-arm.rs:4:9
8faf50e0 3 |
532ac7d7 4LL | let x = match () {
923072b8
FG
5 | ^
6 |
7help: consider giving `x` an explicit type
8 |
9LL | let x: _ = match () {
10 | +++
8faf50e0
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0282`.