blob: 53fecb01663515ce00b8c44f8ba99e00371fe1e0 [file] [log] [blame]
fn cast_thin_to_fat(x: *const ()) {
x as *const [u8];
//~^ ERROR: cannot cast thin pointer `*const ()` to fat pointer `*const [u8]`
}
fn main() {}