mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 09:36:40 +00:00
7 lines
103 B
Rust
7 lines
103 B
Rust
//@ run-pass
|
|
|
|
pub fn main() {
|
|
let i: Box<_> = Box::new(vec![100]);
|
|
assert_eq!((*i)[0], 100);
|
|
}
|