]> git.proxmox.com Git - rustc.git/blob - tests/ui/consts/issue-miri-1910.stderr
a10eea9de114fb82c924bbe593bafa768664a8d8
[rustc.git] / tests / ui / consts / issue-miri-1910.stderr
1 error[E0080]: evaluation of constant value failed
2 --> $SRC_DIR/core/src/ptr/mod.rs:LL:COL
3 |
4 = note: unable to turn pointer into raw bytes
5 |
6 = help: this code performed an operation that depends on the underlying bytes representing a pointer
7 = help: the absolute address of a pointer is not known at compile-time, so such operations are not supported
8 note: inside `std::ptr::read::<u8>`
9 --> $SRC_DIR/core/src/ptr/mod.rs:LL:COL
10 note: inside `ptr::const_ptr::<impl *const u8>::read`
11 --> $SRC_DIR/core/src/ptr/const_ptr.rs:LL:COL
12 note: inside `C`
13 --> $DIR/issue-miri-1910.rs:8:5
14 |
15 LL | (&foo as *const _ as *const u8).add(one_and_a_half_pointers).read();
16 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0080`.