mirror of
https://git.proxmox.com/git/rustc
synced 2026-02-03 22:27:10 +00:00
7 lines
88 B
Rust
7 lines
88 B
Rust
//@ run-pass
|
|
|
|
|
|
pub fn main() {
|
|
let _quux: Box<Vec<usize>> = Box::new(Vec::new());
|
|
}
|