2022-06-21 17:54:17 -05:00
|
|
|
error[E0381]: partially assigned binding `t` isn't fully initialized
|
2019-04-22 02:40:08 -05:00
|
|
|
--> $DIR/issue-54499-field-mutation-marks-mut-as-used.rs:12:9
|
2018-10-11 18:33:08 -05:00
|
|
|
|
|
2022-06-21 13:57:45 -05:00
|
|
|
LL | let mut t: Tuple;
|
2022-06-21 17:54:17 -05:00
|
|
|
| ----- binding declared here but left uninitialized
|
2018-10-11 18:33:08 -05:00
|
|
|
LL | t.0 = S(1);
|
2022-06-21 13:57:45 -05:00
|
|
|
| ^^^^^^^^^^ `t` partially assigned here but it isn't fully initialized
|
|
|
|
|
|
2022-06-21 17:54:17 -05:00
|
|
|
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
|
2018-10-11 18:33:08 -05:00
|
|
|
|
2022-06-21 17:54:17 -05:00
|
|
|
error[E0381]: partially assigned binding `u` isn't fully initialized
|
2019-04-22 02:40:08 -05:00
|
|
|
--> $DIR/issue-54499-field-mutation-marks-mut-as-used.rs:20:9
|
2018-10-11 18:33:08 -05:00
|
|
|
|
|
2022-06-21 13:57:45 -05:00
|
|
|
LL | let mut u: Tpair;
|
2022-06-21 17:54:17 -05:00
|
|
|
| ----- binding declared here but left uninitialized
|
2018-10-11 18:33:08 -05:00
|
|
|
LL | u.0 = S(1);
|
2022-06-21 13:57:45 -05:00
|
|
|
| ^^^^^^^^^^ `u` partially assigned here but it isn't fully initialized
|
|
|
|
|
|
2022-06-21 17:54:17 -05:00
|
|
|
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
|
2018-10-11 18:33:08 -05:00
|
|
|
|
2022-06-21 17:54:17 -05:00
|
|
|
error[E0381]: partially assigned binding `v` isn't fully initialized
|
2019-04-22 02:40:08 -05:00
|
|
|
--> $DIR/issue-54499-field-mutation-marks-mut-as-used.rs:28:9
|
2018-10-11 18:33:08 -05:00
|
|
|
|
|
2022-06-21 13:57:45 -05:00
|
|
|
LL | let mut v: Spair;
|
2022-06-21 17:54:17 -05:00
|
|
|
| ----- binding declared here but left uninitialized
|
2018-10-11 18:33:08 -05:00
|
|
|
LL | v.x = S(1);
|
2022-06-21 13:57:45 -05:00
|
|
|
| ^^^^^^^^^^ `v` partially assigned here but it isn't fully initialized
|
|
|
|
|
|
2022-06-21 17:54:17 -05:00
|
|
|
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
|
2018-10-11 18:33:08 -05:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0381`.
|