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