2021-05-13 09:42:25 -05:00
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
2023-10-26 11:13:20 -05:00
|
|
|
--> $DIR/access_union_field.rs:10:13
|
2021-05-13 09:42:25 -05:00
|
|
|
|
|
|
|
|
LL | let a = foo.bar;
|
|
|
|
| ^^^^^^^ access to union field
|
|
|
|
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
|
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
2023-10-26 11:13:20 -05:00
|
|
|
--> $DIR/access_union_field.rs:11:13
|
2021-05-13 09:42:25 -05:00
|
|
|
|
|
|
|
|
LL | let b = foo.baz;
|
|
|
|
| ^^^^^^^ access to union field
|
|
|
|
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0133`.
|