]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/ptr_comparisons.stderr
Stabilize File::options()
[rust.git] / src / test / ui / consts / ptr_comparisons.stderr
1 error[E0080]: evaluation of constant value failed
2   --> $SRC_DIR/core/src/ptr/const_ptr.rs:LL:COL
3    |
4 LL |         unsafe { intrinsics::offset(self, count) }
5    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |                  |
7    |                  pointer arithmetic failed: alloc3 has size $WORD, so pointer to $TWO_WORDS bytes starting at offset 0 is out-of-bounds
8    |                  inside `ptr::const_ptr::<impl *const usize>::offset` at $SRC_DIR/core/src/ptr/const_ptr.rs:LL:COL
9    |
10   ::: $DIR/ptr_comparisons.rs:60:34
11    |
12 LL | const _: *const usize = unsafe { (FOO as *const usize).offset(2) };
13    |                                  ------------------------------- inside `_` at $DIR/ptr_comparisons.rs:60:34
14
15 error[E0080]: evaluation of constant value failed
16   --> $DIR/ptr_comparisons.rs:63:33
17    |
18 LL |     unsafe { std::ptr::addr_of!((*(FOO as *const usize as *const [u8; 1000]))[999]) };
19    |                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ dereferencing pointer failed: alloc3 has size $WORD, so pointer to 1000 bytes starting at offset 0 is out-of-bounds
20
21 error: any use of this value will cause an error
22   --> $DIR/ptr_comparisons.rs:67:27
23    |
24 LL | const _: usize = unsafe { std::mem::transmute::<*const usize, usize>(FOO) + 4 };
25    | --------------------------^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^---
26    |                           |
27    |                           unable to turn pointer into raw bytes
28    |
29    = note: `#[deny(const_err)]` on by default
30    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
31    = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
32
33 error: any use of this value will cause an error
34   --> $DIR/ptr_comparisons.rs:72:27
35    |
36 LL | const _: usize = unsafe { *std::mem::transmute::<&&usize, &usize>(&FOO) + 4 };
37    | --------------------------^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^---
38    |                           |
39    |                           unable to turn pointer into raw bytes
40    |
41    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
42    = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
43
44 error: aborting due to 4 previous errors
45
46 For more information about this error, try `rustc --explain E0080`.