]> git.lizzy.rs Git - rust.git/blob - tests/ui/unsafe/issue-45087-unreachable-unsafe.mir.stderr
Merge commit '1480cea393d0cee195e59949eabdfbcf1230f7f9' into clippyup
[rust.git] / tests / ui / unsafe / issue-45087-unreachable-unsafe.mir.stderr
1 error[E0133]: dereference of raw pointer is unsafe and requires unsafe function or block
2   --> $DIR/issue-45087-unreachable-unsafe.rs:7:5
3    |
4 LL |     *(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
9 error[E0133]: dereference of raw pointer is unsafe and requires unsafe function or block
10   --> $DIR/issue-45087-unreachable-unsafe.rs:17:5
11    |
12 LL |     *a = 1;
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[E0133]: dereference of raw pointer is unsafe and requires unsafe function or block
18   --> $DIR/issue-45087-unreachable-unsafe.rs:29:5
19    |
20 LL |     *b = 1;
21    |     ^^^^^^ dereference of raw pointer
22    |
23    = note: raw pointers may be null, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior
24
25 error: aborting due to 3 previous errors
26
27 For more information about this error, try `rustc --explain E0133`.