Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
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()