blob: 005f3c78c1d7d0a79622b9c64f89e31b09485e73 [file] [log] [blame]
enum E {
A(u8),
B,
}
const _: u8 = {
let mut e = E::A(1);
let p = if let E::A(x) = &mut e { x as *mut u8 } else { unreachable!() };
// Make sure overwriting `e` uninitializes other bytes
e = E::B;
unsafe { *p }
//~^ ERROR uninitialized
};
fn main() {}