mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +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-await.rs:13:5
|
|
|
|
|
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-await.rs:21:5
|
|
|
|
|
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-await.rs:29:5
|
|
|
|
|
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`.
|