blob: a6c784a3d47777c5d62ffd98b1fa44ecb5cd77d2 [file] [log] [blame]
fn main() {
"example".as_bytes() as [char];
//~^ ERROR cast to unsized type
let arr: &[u8] = &[0, 2, 3];
arr as [char];
//~^ ERROR cast to unsized type
}