summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/deaggregator_test_enum.rs
blob: 02b63a1f55d4e3f581d9f1b305697dd48940f77a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
enum Baz {
    Empty,
    Foo { x: usize },
}

// EMIT_MIR deaggregator_test_enum.bar.Deaggregator.diff
fn bar(a: usize) -> Baz {
    Baz::Foo { x: a }
}

fn main() {
    let x = bar(10);
    match x {
        Baz::Empty => println!("empty"),
        Baz::Foo { x } => println!("{}", x),
    };
}