summary refs log tree commit diff
path: root/src/tools/miri/tests/pass/drop_empty_slice.rs
blob: 9805ce0ace3f051774189042de42fbf277001042 (plain)
1
2
3
4
5
6
7
#![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();
    let _val = box args;
}