summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-eval/heap/dealloc_intrinsic_incorrect_layout.stderr
blob: 4b1f0f686ca0b1063fea8077f6167a07d4aa3cda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
error[E0080]: evaluation of constant value failed
  --> $DIR/dealloc_intrinsic_incorrect_layout.rs:8:5
   |
LL |     intrinsics::const_deallocate(ptr, 4, 2);
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ incorrect layout on deallocation: ALLOC0 has size 4 and alignment 4, but gave size 4 and alignment 2

error[E0080]: evaluation of constant value failed
  --> $DIR/dealloc_intrinsic_incorrect_layout.rs:13:5
   |
LL |     intrinsics::const_deallocate(ptr, 2, 4);
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ incorrect layout on deallocation: ALLOC1 has size 4 and alignment 4, but gave size 2 and alignment 4

error[E0080]: evaluation of constant value failed
  --> $DIR/dealloc_intrinsic_incorrect_layout.rs:19:5
   |
LL |     intrinsics::const_deallocate(ptr, 3, 4);
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ incorrect layout on deallocation: ALLOC2 has size 4 and alignment 4, but gave size 3 and alignment 4

error[E0080]: evaluation of constant value failed
  --> $DIR/dealloc_intrinsic_incorrect_layout.rs:25:5
   |
LL |     intrinsics::const_deallocate(ptr, 4, 3);
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ invalid align passed to `const_deallocate`: 3 is not a power of 2

error: aborting due to 4 previous errors

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