summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-31511.rs
blob: 53fecb01663515ce00b8c44f8ba99e00371fe1e0 (plain)
1
2
3
4
5
6
fn cast_thin_to_fat(x: *const ()) {
    x as *const [u8];
    //~^ ERROR: cannot cast thin pointer `*const ()` to fat pointer `*const [u8]`
}

fn main() {}