From a4b7ed7a42c716ab9f05e351f003d589124fd55d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:18:58 +0200 Subject: Adding upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/consts/issue-63952.rs | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/test/ui/consts/issue-63952.rs (limited to 'src/test/ui/consts/issue-63952.rs') 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() {} -- cgit v1.2.3