rust/tests/ui/proc-macro/auxiliary/derive-nothing.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
164 B
Rust
Raw Normal View History

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