mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-04 19:29:07 +00:00
11 lines
196 B
Rust
11 lines
196 B
Rust
extern crate proc_macro;
|
|
use proc_macro::*;
|
|
|
|
#[proc_macro_derive(GenHelperUse)]
|
|
pub fn derive_a(_: TokenStream) -> TokenStream {
|
|
"
|
|
#[empty_helper]
|
|
struct Uwu;
|
|
".parse().unwrap()
|
|
}
|