rust/tests/ui/borrowck/borrowck-union-uninitialized.stderr

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

26 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-06-21 22:54:17 +00:00
error[E0381]: partially assigned binding `s` isn't fully initialized
--> $DIR/borrowck-union-uninitialized.rs:13:9
2018-08-08 12:28:26 +00:00
|
LL | let mut s: S;
2022-06-21 22:54:17 +00:00
| ----- binding declared here but left uninitialized
LL | let mut u: U;
LL | s.a = 0;
| ^^^^^^^ `s` partially assigned here but it isn't fully initialized
|
2022-06-21 22:54:17 +00:00
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
2018-08-08 12:28:26 +00:00
2022-06-21 22:54:17 +00:00
error[E0381]: partially assigned binding `u` isn't fully initialized
--> $DIR/borrowck-union-uninitialized.rs:14:9
2018-08-08 12:28:26 +00:00
|
LL | let mut u: U;
2022-06-21 22:54:17 +00:00
| ----- binding declared here but left uninitialized
LL | s.a = 0;
LL | u.a = 0;
| ^^^^^^^ `u` partially assigned here but it isn't fully initialized
|
2022-06-21 22:54:17 +00:00
= help: partial initialization isn't supported, fully initialize the binding with a default value and mutate it, or use `std::mem::MaybeUninit`
2018-08-08 12:28:26 +00:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0381`.