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