]> git.proxmox.com Git - rustc.git/blame_incremental - tests/codegen/mir_zst_stores.rs
bump version to 1.80.1+dfsg1-1~bpo12+pve1
[rustc.git] / tests / codegen / mir_zst_stores.rs
... / ...
CommitLineData
1//@ compile-flags: -C no-prepopulate-passes
2
3#![crate_type = "lib"]
4use std::marker::PhantomData;
5
6#[derive(Copy, Clone)]
7struct Zst {
8 phantom: PhantomData<Zst>,
9}
10
11// CHECK-LABEL: @mir
12// CHECK-NOT: store{{.*}}undef
13#[no_mangle]
14pub fn mir() {
15 let x = Zst { phantom: PhantomData };
16 let y = (x, 0);
17 drop(y);
18 drop((0, x));
19}