mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
34 lines
1.5 KiB
Plaintext
34 lines
1.5 KiB
Plaintext
error[E0381]: partially assigned binding `t` isn't fully initialized
|
|
--> $DIR/partial-initialization-across-yield.rs:12:9
|
|
|
|
|
LL | let mut t: (i32, i32);
|
|
| ----- binding declared here but left uninitialized
|
|
LL | t.0 = 42;
|
|
| ^^^^^^^^ `t` partially assigned here but it isn't fully initialized
|
|
|
|
|
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
|
|
|
|
error[E0381]: partially assigned binding `t` isn't fully initialized
|
|
--> $DIR/partial-initialization-across-yield.rs:22:9
|
|
|
|
|
LL | let mut t: T;
|
|
| ----- binding declared here but left uninitialized
|
|
LL | t.0 = 42;
|
|
| ^^^^^^^^ `t` partially assigned here but it isn't fully initialized
|
|
|
|
|
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
|
|
|
|
error[E0381]: partially assigned binding `t` isn't fully initialized
|
|
--> $DIR/partial-initialization-across-yield.rs:32:9
|
|
|
|
|
LL | let mut t: S;
|
|
| ----- binding declared here but left uninitialized
|
|
LL | t.x = 42;
|
|
| ^^^^^^^^ `t` partially assigned here but it isn't fully initialized
|
|
|
|
|
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0381`.
|