about summary refs log tree commit diff
path: root/tests/ui/proc-macro/auxiliary/derive-nothing.rs
blob: eefa2c40ac36df02c2619350b402578580785052 (plain)
1
2
3
4
5
6
7
8
extern crate proc_macro;

use proc_macro::TokenStream;

#[proc_macro_derive(Nothing)]
pub fn nothing(input: TokenStream) -> TokenStream {
    "".parse().unwrap()
}