about summary refs log tree commit diff
path: root/tests/ui/attributes/auxiliary/external-macro-use.rs
blob: beeb7fe689c8d0dbe7367d3832962ee4ad651880 (plain)
1
2
3
4
5
6
7
extern crate proc_macro;
use proc_macro::*;

#[proc_macro_attribute]
pub fn a(_: TokenStream, input: TokenStream) -> TokenStream {
   input
}