rust/src/test/ui/unique/unique-drop-complex.rs
2019-07-27 18:56:16 +03:00

8 lines
130 B
Rust

// run-pass
// pretty-expanded FIXME #23616
#![feature(box_syntax)]
pub fn main() {
let _x: Box<_> = box vec![0,0,0,0,0];
}