blob: 88716e757a939f70a7312ed449c5413b86507a8f [file] [log] [blame]
error[E0282]: type annotations needed
--> $DIR/missing-type-annotation.rs:3:9
|
LL | let x;
| ^
|
help: consider giving `x` an explicit type
|
LL | let x: /* Type */;
| ++++++++++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0282`.