mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 18:23:49 +00:00
14 lines
244 B
Rust
14 lines
244 B
Rust
// 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() {}
|