]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-45087-unreachable-unsafe.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-45087-unreachable-unsafe.stderr
CommitLineData
8faf50e0 1error[E0133]: dereference of raw pointer is unsafe and requires unsafe function or block
0731742a 2 --> $DIR/issue-45087-unreachable-unsafe.rs:3:5
8faf50e0
XL
3 |
4LL | *(1 as *mut u32) = 42;
5 | ^^^^^^^^^^^^^^^^^^^^^ dereference of raw pointer
6 |
7 = note: raw pointers may be NULL, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0133`.