summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/issue-63952.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/issue-63952.rs')
-rw-r--r--src/test/ui/consts/issue-63952.rs27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/test/ui/consts/issue-63952.rs b/src/test/ui/consts/issue-63952.rs
deleted file mode 100644
index 5c83e6f45..000000000
--- a/src/test/ui/consts/issue-63952.rs
+++ /dev/null
@@ -1,27 +0,0 @@
-// Regression test for #63952, shouldn't hang.
-// stderr-per-bitwidth
-
-#[repr(C)]
-#[derive(Copy, Clone)]
-struct SliceRepr {
- ptr: *const u8,
- len: usize,
-}
-
-union SliceTransmute {
- repr: SliceRepr,
- slice: &'static [u8],
-}
-
-// bad slice: length too big to even exist anywhere
-const SLICE_WAY_TOO_LONG: &[u8] = unsafe { //~ ERROR: it is undefined behavior to use this value
- SliceTransmute {
- repr: SliceRepr {
- ptr: &42,
- len: usize::MAX,
- },
- }
- .slice
-};
-
-fn main() {}