]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-2151.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-2151.stderr
CommitLineData
8faf50e0 1error[E0282]: type annotations needed
923072b8 2 --> $DIR/issue-2151.rs:2:9
8faf50e0
XL
3 |
4LL | let x = panic!();
923072b8 5 | ^
8faf50e0
XL
6 |
7 = note: type must be known at this point
923072b8
FG
8help: consider giving `x` an explicit type
9 |
10LL | let x: _ = panic!();
11 | +++
8faf50e0
XL
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0282`.