mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 04:39:16 +00:00
18 lines
247 B
Rust
18 lines
247 B
Rust
/// Test for https://github.com/rust-lang/rust-clippy/issues/3747
|
|
|
|
macro_rules! a {
|
|
( $pub:tt $($attr:tt)* ) => {
|
|
$($attr)* $pub fn say_hello() {}
|
|
};
|
|
}
|
|
|
|
macro_rules! b {
|
|
() => {
|
|
a! { pub }
|
|
};
|
|
}
|
|
|
|
b! {}
|
|
|
|
fn main() {}
|