summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/building/issue_110508.rs
blob: bcbb1c298309072c799f78477b442552049e50b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// EMIT_MIR issue_110508.{impl#0}-BAR.built.after.mir
// EMIT_MIR issue_110508.{impl#0}-SELF_BAR.built.after.mir

enum Foo {
    Bar(()),
}

impl Foo {
    const BAR: Foo = Foo::Bar(());
    const SELF_BAR: Foo = Self::Bar(());
}

fn main() {}