File: private.rs

package info (click to toggle)
rust-proc-macro-hack 0.5.19-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 232 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 144 bytes parent folder | download | duplicates (37)
1
2
3
4
5
6
7
8
use proc_macro_hack::proc_macro_hack;

#[proc_macro_hack]
fn my_macro(input: TokenStream) -> TokenStream {
    unimplemented!()
}

fn main() {}