blob: cab747c2c059149c8fb657ff8eaca4e7ad8b82a7 [file] [log] [blame]
#![feature(decl_macro)]
mod inner1 {
pub struct Struct {}
pub mod inner2 {
pub macro mac() {
super::Struct
}
}
}
pub use inner1::inner2 as public;