mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 16:21:28 +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
|
|
}
|