summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unsafe/access_union_field.mir.stderr
blob: 98bc4077793e367996a8983761a94d61270ad541 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0133]: access to union field is unsafe and requires unsafe function or block
  --> $DIR/access_union_field.rs:13:13
   |
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
  --> $DIR/access_union_field.rs:14:13
   |
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`.