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

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