]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/pass/zst_box.rs
Rollup merge of #101997 - cuviper:drop-legacy-pm, r=nikic
[rust.git] / src / tools / miri / tests / pass / zst_box.rs
1 fn main() {
2     let x = Box::new(());
3     let y = Box::new(());
4     drop(y);
5     let z = Box::new(());
6     drop(x);
7     drop(z);
8 }