blob: 4ed092670a86a0efca22cd98d39afcdbc7e4d480 [file] [log] [blame]
// https://github.com/rust-lang/rust/issues/5900
//@ check-pass
#![allow(dead_code)]
pub mod foo {
use super::Bar;
pub struct FooStruct { bar : Bar }
}
pub enum Bar {
Bar0 = 0 as isize
}
pub fn main() {}