summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-cast-wrong-type.rs
blob: 6e055a2bcd34029c24e55e05d4f02189be052fd7 (plain)
1
2
3
4
5
const a: [u8; 3] = ['h' as u8, 'i' as u8, 0 as u8];
const b: *const i8 = &a as *const i8; //~ ERROR mismatched types

fn main() {
}