]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/const_raw_ptr_ops2.stderr
de54ea3b9fbd0c7b6754b766a758c500a9dfaf6d
[rust.git] / src / test / ui / consts / const-eval / const_raw_ptr_ops2.stderr
1 error: any use of this value will cause an error
2   --> $DIR/const_raw_ptr_ops2.rs:9:26
3    |
4 LL | const Z2: i32 = unsafe { *(42 as *const i32) };
5    | -------------------------^^^^^^^^^^^^^^^^^^^---
6    |                          |
7    |                          unable to turn bytes into a pointer
8    |
9    = note: `#[deny(const_err)]` on by default
10    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
11    = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
12
13 error: any use of this value will cause an error
14   --> $DIR/const_raw_ptr_ops2.rs:11:26
15    |
16 LL | const Z3: i32 = unsafe { *(44 as *const i32) };
17    | -------------------------^^^^^^^^^^^^^^^^^^^---
18    |                          |
19    |                          unable to turn bytes into a pointer
20    |
21    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
22    = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
23
24 error: aborting due to 2 previous errors
25