2022-03-21 08:32:26 -05:00
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
|
|
--> $DIR/union.rs:30:20
|
2021-05-13 09:42:25 -05:00
|
|
|
|
|
2022-03-21 08:32:26 -05:00
|
|
|
LL | Foo { bar: _a } => {},
|
|
|
|
| ^^ access to union field
|
2021-05-13 09:42:25 -05:00
|
|
|
|
|
2022-03-21 08:32:26 -05:00
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
2021-05-13 09:42:25 -05:00
|
|
|
|
2022-03-21 08:32:26 -05:00
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
|
|
--> $DIR/union.rs:32:11
|
2021-05-13 09:42:25 -05:00
|
|
|
|
|
2022-03-21 08:32:26 -05:00
|
|
|
LL | match foo {
|
|
|
|
| ^^^ access to union field
|
|
|
|
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
2021-05-13 09:42:25 -05:00
|
|
|
|
2022-03-21 08:32:26 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2021-05-13 09:42:25 -05:00
|
|
|
|
2022-03-21 08:32:26 -05:00
|
|
|
For more information about this error, try `rustc --explain E0133`.
|