mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-03 01:28:39 +00:00
9 lines
168 B
Rust
9 lines
168 B
Rust
extern crate proc_macro;
|
|
|
|
use proc_macro::TokenStream;
|
|
|
|
#[proc_macro_derive(Clona)]
|
|
pub fn derive_clonea(input: TokenStream) -> TokenStream {
|
|
"".parse().unwrap()
|
|
}
|