]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/reassignment_immutable_fields_overlapping.stderr
Auto merge of #102283 - GuillaumeGomez:option-code-example-unwrap-or-default, r=thomcc
[rust.git] / src / test / ui / borrowck / reassignment_immutable_fields_overlapping.stderr
1 error[E0381]: partially assigned binding `x` isn't fully initialized
2   --> $DIR/reassignment_immutable_fields_overlapping.rs:12:5
3    |
4 LL |     let x: Foo;
5    |         - binding declared here but left uninitialized
6 LL |     x.a = 1;
7    |     ^^^^^^^ `x` partially assigned here but it isn't fully initialized
8    |
9    = help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
10
11 error[E0594]: cannot assign to `x.b`, as `x` is not declared as mutable
12   --> $DIR/reassignment_immutable_fields_overlapping.rs:13:5
13    |
14 LL |     let x: Foo;
15    |         - help: consider changing this to be mutable: `mut x`
16 LL |     x.a = 1;
17 LL |     x.b = 22;
18    |     ^^^^^^^^ cannot assign
19
20 error: aborting due to 2 previous errors
21
22 Some errors have detailed explanations: E0381, E0594.
23 For more information about an error, try `rustc --explain E0381`.