mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 08:13:41 +00:00
16 lines
308 B
Rust
16 lines
308 B
Rust
// force-host
|
|
// no-prefer-dynamic
|
|
|
|
#![crate_type = "proc-macro"]
|
|
|
|
extern crate proc_macro;
|
|
|
|
use proc_macro::TokenStream;
|
|
|
|
#[proc_macro_derive(CToD)]
|
|
pub fn derive(input: TokenStream) -> TokenStream {
|
|
let input = input.to_string();
|
|
assert_eq!(input, "struct C ;");
|
|
"struct D;".parse().unwrap()
|
|
}
|