mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
26 lines
345 B
Rust
26 lines
345 B
Rust
//@ run-pass
|
|
#![allow(non_snake_case)]
|
|
|
|
macro_rules! doc {
|
|
(
|
|
$(#[$outer:meta])*
|
|
mod $i:ident {
|
|
$(#![$inner:meta])*
|
|
}
|
|
) =>
|
|
(
|
|
$(#[$outer])*
|
|
pub mod $i {
|
|
$(#![$inner])*
|
|
}
|
|
)
|
|
}
|
|
|
|
doc! {
|
|
/// Outer doc
|
|
mod Foo {
|
|
//! Inner doc
|
|
}
|
|
}
|
|
|
|
fn main() { }
|