mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
10 lines
186 B
Rust
10 lines
186 B
Rust
#![crate_type = "proc-macro"]
|
|
|
|
extern crate proc_macro;
|
|
|
|
#[proc_macro_derive(A)]
|
|
pub fn derive(ts: proc_macro::TokenStream) -> proc_macro::TokenStream { ts }
|
|
|
|
#[derive(Debug)]
|
|
struct S;
|