rustc/tests/ui/box/unit/unique-drop-complex.rs
2025-02-17 11:14:05 +01:00

6 lines
80 B
Rust

//@ run-pass
pub fn main() {
let _x: Box<_> = Box::new(vec![0,0,0,0,0]);
}