mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
9 lines
175 B
Rust
9 lines
175 B
Rust
|
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
|
||
|
}
|