Add issues folder in async-await

This commit is contained in:
varkor 2019-05-24 22:06:09 +01:00
parent 06b85709d4
commit cb7e0d0dd3
17 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
// force-host
// no-prefer-dynamic
#![crate_type = "proc-macro"]
extern crate proc_macro;
use proc_macro::TokenStream;
#[proc_macro_attribute]
pub fn attr(_args: TokenStream, input: TokenStream) -> TokenStream {
println!("{}", input);
TokenStream::new()
}