mirror of https://github.com/rust-lang/rust
23 lines
430 B
Rust
23 lines
430 B
Rust
//@ force-host
|
|
//@ no-prefer-dynamic
|
|
|
|
#![crate_type = "proc-macro"]
|
|
#![deny(warnings)]
|
|
|
|
extern crate proc_macro;
|
|
|
|
use proc_macro::TokenStream;
|
|
|
|
#[proc_macro_derive(A)]
|
|
pub fn derive(input: TokenStream) -> TokenStream {
|
|
let input = input.to_string();
|
|
assert!(input.contains("struct A;"));
|
|
r#"
|
|
impl A {
|
|
fn a(&self) {
|
|
panic!("hello");
|
|
}
|
|
}
|
|
"#.parse().unwrap()
|
|
}
|