summary refs log tree commit diff
path: root/src/test/ui/unique/unique-drop-complex.rs
blob: 0b7bda83b3fa18a68882a0b80919b7e1d36a0eae (plain)
1
2
3
4
5
6
7
8
// run-pass
// pretty-expanded FIXME #23616

#![feature(box_syntax)]

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