summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/std/alloc.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/std/alloc.rs')
-rw-r--r--src/test/ui/consts/std/alloc.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/consts/std/alloc.rs b/src/test/ui/consts/std/alloc.rs
deleted file mode 100644
index 708b954e8..000000000
--- a/src/test/ui/consts/std/alloc.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// stderr-per-bitwidth
-// ignore-debug (the debug assertions change the error)
-use std::alloc::Layout;
-
-// ok
-const LAYOUT_VALID: Layout = unsafe { Layout::from_size_align_unchecked(0x1000, 0x08) };
-
-// not ok, since alignment needs to be non-zero.
-const LAYOUT_INVALID_ZERO: Layout = unsafe { Layout::from_size_align_unchecked(0x1000, 0x00) };
-//~^ ERROR it is undefined behavior to use this value
-
-// not ok, since alignment needs to be a power of two.
-const LAYOUT_INVALID_THREE: Layout = unsafe { Layout::from_size_align_unchecked(9, 3) };
-//~^ ERROR it is undefined behavior to use this value
-
-fn main() {}