about summary refs log tree commit diff
path: root/tests/ui/box/unit/unique-drop-complex.rs
blob: 6e5fb524f41e5f97ceffa16f6e8ea91dc3873737 (plain)
1
2
3
4
5
//@ run-pass

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