mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-03 20:23:59 +00:00
7 lines
99 B
Rust
7 lines
99 B
Rust
pub fn foo() {}
|
|
|
|
#[macro_export]
|
|
macro_rules! gimme_a {
|
|
($($mac:tt)*) => { $($mac)* { 'a } }
|
|
}
|