mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
168 B
Rust
15 lines
168 B
Rust
//@ check-pass
|
|
macro_rules! a {
|
|
() => { "a" }
|
|
}
|
|
|
|
macro_rules! b {
|
|
($doc:expr) => {
|
|
#[doc = $doc]
|
|
pub struct B;
|
|
}
|
|
}
|
|
|
|
b!(a!());
|
|
|
|
fn main() {}
|