]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-47412.stderr
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-47412.stderr
CommitLineData
8faf50e0 1error[E0133]: access to union field is unsafe and requires unsafe function or block
0731742a 2 --> $DIR/issue-47412.rs:11:11
8faf50e0
XL
3 |
4LL | 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
9error[E0133]: dereference of raw pointer is unsafe and requires unsafe function or block
0731742a 10 --> $DIR/issue-47412.rs:17:11
8faf50e0
XL
11 |
12LL | 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
17error: aborting due to 2 previous errors
18
19For more information about this error, try `rustc --explain E0133`.