mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
7 lines
116 B
Rust
7 lines
116 B
Rust
// run-pass
|
|
fn main() {
|
|
let x = Box::new([1, 2, 3]);
|
|
let y = x as Box<[i32]>;
|
|
println!("y: {:?}", y);
|
|
}
|