blob: 3f8098e76fd295499e2b366908bac58069c94857 [file] [log] [blame]
fn main() {
let a: [u8; 3] = [1,2,3];
let b = &a;
let c = b as *const [u32; 3]; //~ ERROR casting `&[u8; 3]` as `*const [u32; 3]` is invalid
}