1 // run-pass
2 #![allow(dead_code)]
3 // pretty-expanded FIXME #23616
4 
5 mod a {
6     pub enum Foo {
7         Bar,
8         Baz,
9         Boo
10     }
11 }
12 
main()13 pub fn main() {
14     let _x = a::Foo::Bar;
15 }
16