mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
288 B
Rust
17 lines
288 B
Rust
// force-host
|
|
// no-prefer-dynamic
|
|
|
|
#![crate_type = "proc-macro"]
|
|
|
|
extern crate proc_macro;
|
|
|
|
use proc_macro::TokenStream;
|
|
|
|
#[proc_macro_derive(Append)]
|
|
pub fn derive_a(input: TokenStream) -> TokenStream {
|
|
"impl Append for A {
|
|
fn foo(&self) {}
|
|
}
|
|
".parse().unwrap()
|
|
}
|