2022-06-21 17:54:17 -05:00
|
|
|
error[E0381]: used binding `x` isn't initialized
|
2021-11-11 16:55:58 -06:00
|
|
|
--> $DIR/move-of-addr-of-mut.rs:8:5
|
|
|
|
|
|
2022-06-21 13:57:45 -05:00
|
|
|
LL | let mut x: S;
|
2022-06-21 17:54:17 -05:00
|
|
|
| ----- binding declared here but left uninitialized
|
2021-11-11 16:55:58 -06:00
|
|
|
LL | std::ptr::addr_of_mut!(x);
|
2022-06-21 17:54:17 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ `x` used here but it isn't initialized
|
2021-11-11 16:55:58 -06:00
|
|
|
|
|
|
|
|
= note: this error originates in the macro `std::ptr::addr_of_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2022-09-23 02:28:48 -05:00
|
|
|
help: consider assigning a value
|
|
|
|
|
|
|
|
|
LL | let mut x: S = todo!();
|
|
|
|
| +++++++++
|
2021-11-11 16:55:58 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2021-11-11 16:55:58 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0381`.
|