mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 23:06:23 +00:00
16 lines
277 B
Rust
16 lines
277 B
Rust
|
pub struct FirstStruct;
|
||
|
|
||
|
#[macro_export]
|
||
|
macro_rules! outer_macro {
|
||
|
($name:ident) => {
|
||
|
#[macro_export]
|
||
|
macro_rules! inner_macro {
|
||
|
($wrapper:ident) => {
|
||
|
$wrapper!($name)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
outer_macro!(FirstStruct);
|