summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/building/issue_110508.rs
blob: e597cd5d06b323836e48a76e02875765b7417b9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// skip-filecheck
// 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() {}