about summary refs log tree commit diff
path: root/tests/ui/cast/cast-to-slice.rs
blob: a6c784a3d47777c5d62ffd98b1fa44ecb5cd77d2 (plain)
1
2
3
4
5
6
7
8
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
}