Skip to content

Commit

Permalink
Update mini-macro post proc macro stabilization
Browse files Browse the repository at this point in the history
rust-lang/rust#52081 stabilized proc macros, but
quote is still unstable, so you need to explicitly enable that feature.
  • Loading branch information
Manishearth committed Jul 16, 2018
1 parent 8f61a79 commit 3246a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mini-macro/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(proc_macro, proc_macro_non_items)]
#![feature(use_extern_macros, proc_macro_quote, proc_macro_non_items)]
extern crate proc_macro;

use proc_macro::{TokenStream, quote};
Expand Down

0 comments on commit 3246a1f

Please sign in to comment.