blob: 986a8233ef2aa3577fc1bc56a5bd9fe4a933447a [file] [log] [blame] [edit]
//@ check-pass
#![allow(dead_code)]
//@ pretty-expanded FIXME #23616
pub mod foo {
use super::Bar;
pub struct FooStruct { bar : Bar }
}
pub enum Bar {
Bar0 = 0 as isize
}
pub fn main() {}