summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-eval/heap/dealloc_intrinsic_incorrect_layout.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-eval/heap/dealloc_intrinsic_incorrect_layout.stderr')
-rw-r--r--src/test/ui/consts/const-eval/heap/dealloc_intrinsic_incorrect_layout.stderr27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/test/ui/consts/const-eval/heap/dealloc_intrinsic_incorrect_layout.stderr b/src/test/ui/consts/const-eval/heap/dealloc_intrinsic_incorrect_layout.stderr
deleted file mode 100644
index 650b409b1..000000000
--- a/src/test/ui/consts/const-eval/heap/dealloc_intrinsic_incorrect_layout.stderr
+++ /dev/null
@@ -1,27 +0,0 @@
-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: alloc2 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: alloc4 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: alloc6 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);
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ align has to be a power of 2, `3` is not a power of 2
-
-error: aborting due to 4 previous errors
-
-For more information about this error, try `rustc --explain E0080`.