mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-07 23:47:39 +00:00
16 lines
265 B
Rust
16 lines
265 B
Rust
![]() |
//@ force-host
|
||
|
//@ no-prefer-dynamic
|
||
|
|
||
|
#![crate_type = "proc-macro"]
|
||
|
|
||
|
extern crate proc_macro;
|
||
|
use proc_macro::*;
|
||
|
|
||
|
#[proc_macro_derive(GenHelperUse)]
|
||
|
pub fn derive_a(_: TokenStream) -> TokenStream {
|
||
|
"
|
||
|
#[empty_helper]
|
||
|
struct Uwu;
|
||
|
".parse().unwrap()
|
||
|
}
|