]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-47412.stderr
Auto merge of #57108 - Mark-Simulacrum:license-remove, r=pietroalbini
[rust.git] / src / test / ui / issues / issue-47412.stderr
1 error[E0133]: access to union field is unsafe and requires unsafe function or block
2   --> $DIR/issue-47412.rs:11:11
3    |
4 LL |     match u.void {}
5    |           ^^^^^^ access to union field
6    |
7    = note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
8
9 error[E0133]: dereference of raw pointer is unsafe and requires unsafe function or block
10   --> $DIR/issue-47412.rs:17:11
11    |
12 LL |     match *ptr {}
13    |           ^^^^ dereference of raw pointer
14    |
15    = note: raw pointers may be NULL, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0133`.