2019-07-02 16:30:28 -05:00
|
|
|
// build-pass (FIXME(62277): could be check-pass?)
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-01-28 23:05:11 -06:00
|
|
|
pub mod foo {
|
|
|
|
use super::Bar;
|
|
|
|
|
|
|
|
pub struct FooStruct { bar : Bar }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum Bar {
|
2015-03-25 19:06:52 -05:00
|
|
|
Bar0 = 0 as isize
|
2014-01-28 23:05:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {}
|