rust/tests/ui/borrowck/issue-54499-field-mutation-marks-mut-as-used.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.6 KiB
Plaintext
Raw Normal View History

2022-06-21 17:54:17 -05:00
error[E0381]: partially assigned binding `t` isn't fully initialized
--> $DIR/issue-54499-field-mutation-marks-mut-as-used.rs:12:9
2018-10-11 18:33:08 -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);
| ^^^^^^^^^^ `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
--> $DIR/issue-54499-field-mutation-marks-mut-as-used.rs:20:9
2018-10-11 18:33:08 -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);
| ^^^^^^^^^^ `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
--> $DIR/issue-54499-field-mutation-marks-mut-as-used.rs:28:9
2018-10-11 18:33:08 -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);
| ^^^^^^^^^^ `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`.