mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +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()
|
|
}
|