mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
285 B
Rust
18 lines
285 B
Rust
// check-pass
|
|
#![allow(dead_code)]
|
|
// pretty-expanded FIXME #23616
|
|
#![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() {}
|