rust/tests/ui/box/unit/unique-drop-complex.rs
2024-02-16 20:02:50 +00:00

6 lines
113 B
Rust

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