rust/tests/mir-opt/dataflow-const-prop/enum.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
258 B
Rust
Raw Normal View History

// unit-test: DataflowConstProp
// Not trackable, because variants could be aliased.
enum E {
V1(i32),
V2(i32)
}
// EMIT_MIR enum.main.DataflowConstProp.diff
fn main() {
let e = E::V1(0);
let x = match e { E::V1(x) => x, E::V2(x) => x };
}