rust/tests/run-pass/drop_empty_slice.rs

8 lines
187 B
Rust
Raw Normal View History

#![feature(box_syntax)]
fn main() {
// With the nested Vec, this is calling Offset(Unique::empty(), 0) on drop.
let args : Vec<Vec<i32>> = Vec::new();
2018-11-26 08:31:53 -06:00
let _val = box args;
}