Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
mir-opt
/
building
/
issue_110508.rs
blob: e597cd5d06b323836e48a76e02875765b7417b9e [
file
] [
log
] [
blame
] [
edit
]
// 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
()
{}