]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/issue-miri-1910.stderr
Rollup merge of #105674 - estebank:iterator-chains, r=oli-obk
[rust.git] / src / test / 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 copy parts of a pointer from memory at ALLOC
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`.