mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
5 lines
173 B
Rust
5 lines
173 B
Rust
fn main() {
|
|
let foo: Box<[u8]> = Box::new(*b"foo");
|
|
let _foo: [u8] = *foo; //~ERROR the size for values of type `[u8]` cannot be known at compilation time [E0277]
|
|
}
|