mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-20 16:48:17 +00:00
9 lines
144 B
Rust
9 lines
144 B
Rust
use proc_macro_hack::proc_macro_hack;
|
|
|
|
#[proc_macro_hack]
|
|
fn my_macro(input: TokenStream) -> TokenStream {
|
|
unimplemented!()
|
|
}
|
|
|
|
fn main() {}
|