rust/tests/ui/cast/cast-to-slice.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
175 B
Rust
Raw Normal View History

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
}