Merge pull request from RalfJung/test

Enable a test that was accidentally left disabled
This commit is contained in:
Oliver Schneider 2017-06-12 08:06:39 +02:00 committed by GitHub
commit ec8cd6da29

@ -1,9 +1,7 @@
#![feature(box_syntax)]
// This disables the test completely:
// ignore-stage1
fn main() {
// With the nested Vec, this is calling Offset(Unique::empty(), 0).
// With the nested Vec, this is calling Offset(Unique::empty(), 0) on drop.
let args : Vec<Vec<i32>> = Vec::new();
let local = box args;
let _ = box args;
}