diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2018-07-17 09:30:18 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-17 09:30:18 -0500 |
| commit | f3cb25b8f9d8c951372194311a314dc16f2ae03c (patch) | |
| tree | acfe39821af2bf2afc5e4caad1e1f67f366db582 /library/stdarch/crates/assert-instr-macro | |
| parent | d89dc542ec8a71869e953e22bee26c4188fc31cf (diff) | |
| download | rust-f3cb25b8f9d8c951372194311a314dc16f2ae03c.tar.gz rust-f3cb25b8f9d8c951372194311a314dc16f2ae03c.zip | |
Fix compile on latest nightly (#527)
The `proc_macro` feature has stabilized in the compiler and usage of it largely needs to switch to `use_extern_macros` now.
Diffstat (limited to 'library/stdarch/crates/assert-instr-macro')
| -rw-r--r-- | library/stdarch/crates/assert-instr-macro/src/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/library/stdarch/crates/assert-instr-macro/src/lib.rs b/library/stdarch/crates/assert-instr-macro/src/lib.rs index 317e7cf01b0..76a14b37cb9 100644 --- a/library/stdarch/crates/assert-instr-macro/src/lib.rs +++ b/library/stdarch/crates/assert-instr-macro/src/lib.rs @@ -8,8 +8,6 @@ //! `#[test]` function to the original token stream which asserts that the //! function itself contains the relevant instruction. -#![feature(proc_macro)] - extern crate proc_macro; extern crate proc_macro2; #[macro_use] |
