Skip to content

Commit cb7e0d0

Browse files
committed
Add issues folder in async-await
1 parent 06b8570 commit cb7e0d0

17 files changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// force-host
2+
// no-prefer-dynamic
3+
#![crate_type = "proc-macro"]
4+
5+
extern crate proc_macro;
6+
use proc_macro::TokenStream;
7+
8+
#[proc_macro_attribute]
9+
pub fn attr(_args: TokenStream, input: TokenStream) -> TokenStream {
10+
println!("{}", input);
11+
TokenStream::new()
12+
}

0 commit comments

Comments
 (0)