2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2012-09-27 17:42:25 -07:00
|
|
|
mod a {
|
|
|
|
pub enum Foo {
|
|
|
|
Bar,
|
|
|
|
Baz,
|
|
|
|
Boo
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2014-11-06 00:05:53 -08:00
|
|
|
let _x = a::Foo::Bar;
|
2012-09-27 17:42:25 -07:00
|
|
|
}
|