rust/tests/ui/proc-macro/auxiliary/issue-39889.rs

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

18 lines
338 B
Rust
Raw Normal View History

//@ force-host
//@ no-prefer-dynamic
2017-02-27 21:07:23 -06:00
#![crate_type = "proc-macro"]
extern crate proc_macro;
use proc_macro::TokenStream;
#[proc_macro_derive(Issue39889)]
pub fn f(_input: TokenStream) -> TokenStream {
let rules = r#"
macro_rules! id {
($($tt:tt)*) => { $($tt)* };
}
"#;
rules.parse().unwrap()
}