mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-04 16:39:09 +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 } }
|
|
}
|