]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/pass/zst_box.rs
Auto merge of #104915 - weihanglo:update-cargo, r=ehuss
[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 }