2022-06-21 22:54:17 +00:00
|
|
|
error[E0381]: partially assigned binding `s` isn't fully initialized
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/borrowck-union-uninitialized.rs:13:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2022-06-21 18:57:45 +00:00
|
|
|
LL | let mut s: S;
|
2022-06-21 22:54:17 +00:00
|
|
|
| ----- binding declared here but left uninitialized
|
2022-06-21 18:57:45 +00:00
|
|
|
LL | let mut u: U;
|
2019-04-22 07:40:08 +00:00
|
|
|
LL | s.a = 0;
|
2022-06-21 18:57:45 +00:00
|
|
|
| ^^^^^^^ `s` partially assigned here but it isn't fully initialized
|
|
|
|
|
|
2022-06-21 22:54:17 +00:00
|
|
|
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2022-06-21 22:54:17 +00:00
|
|
|
error[E0381]: partially assigned binding `u` isn't fully initialized
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/borrowck-union-uninitialized.rs:14:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2022-06-21 18:57:45 +00:00
|
|
|
LL | let mut u: U;
|
2022-06-21 22:54:17 +00:00
|
|
|
| ----- binding declared here but left uninitialized
|
2022-06-21 18:57:45 +00:00
|
|
|
LL | s.a = 0;
|
2019-04-22 07:40:08 +00:00
|
|
|
LL | u.a = 0;
|
2022-06-21 18:57:45 +00:00
|
|
|
| ^^^^^^^ `u` partially assigned here but it isn't fully initialized
|
|
|
|
|
|
2022-06-21 22:54:17 +00:00
|
|
|
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0381`.
|