2022-06-21 15:54:17 -07:00
|
|
|
error[E0381]: used binding `x` isn't initialized
|
2020-11-04 22:23:43 +05:30
|
|
|
--> $DIR/issue-78655.rs:3:5
|
|
|
|
|
|
|
2022-06-21 11:57:45 -07:00
|
|
|
LL | let x;
|
2022-06-21 15:54:17 -07:00
|
|
|
| - binding declared here but left uninitialized
|
2020-11-04 22:23:43 +05:30
|
|
|
LL | &x
|
2022-06-21 15:54:17 -07:00
|
|
|
| ^^ `x` used here but it isn't initialized
|
2022-09-23 15:28:48 +08:00
|
|
|
|
|
|
|
|
|
help: consider assigning a value
|
|
|
|
|
|
|
2024-04-10 20:01:20 +00:00
|
|
|
LL | let x = 42;
|
|
|
|
|
| ++++
|
2020-11-04 22:23:43 +05:30
|
|
|
|
2024-11-20 02:37:56 +00:00
|
|
|
error: aborting due to 1 previous error
|
2020-11-04 22:23:43 +05:30
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0381`.
|