mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
184 B
Rust
16 lines
184 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
mod a {
|
|
pub enum Foo {
|
|
Bar,
|
|
Baz,
|
|
Boo
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
let _x = a::Foo::Bar;
|
|
}
|