blob: b6241a7c18e4be4d58c07950912917a2873665ef [file] [log] [blame]
// https://github.com/rust-lang/rust/issues/9110
//@ check-pass
#![allow(dead_code)]
#![allow(non_snake_case)]
macro_rules! silly_macro {
() => (
pub mod Qux {
pub struct Foo { x : u8 }
pub fn bar(_foo : Foo) {}
}
);
}
silly_macro!();
pub fn main() {}