summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-eval/heap/alloc_intrinsic_uninit.64bit.stderr
blob: d2bffa42561ac38f9897ce2abda89a303d4c705b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0080]: it is undefined behavior to use this value
  --> $DIR/alloc_intrinsic_uninit.rs:8:1
   |
LL | const BAR: &i32 = unsafe { &*(intrinsics::const_allocate(4, 4) as *mut i32) };
   | ^^^^^^^^^^^^^^^ constructing invalid value at .<deref>: encountered uninitialized memory, but expected an integer
   |
   = note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
   = note: the raw bytes of the constant (size: 8, align: 8) {
               ╾───────alloc2────────╼                         │ ╾──────╼
           }

error: aborting due to previous error

For more information about this error, try `rustc --explain E0080`.