diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2019-12-30 17:02:18 +0900 |
|---|---|---|
| committer | Yuki Okushi <huyuumi.dev@gmail.com> | 2019-12-30 17:02:18 +0900 |
| commit | 790012ad7767fd38f9aa16cfafeb8459249c082e (patch) | |
| tree | 51fc4e489b70c607cc978f5a73fe7613294f2301 | |
| parent | a4c201e6b4f6ef2d2c12a70bbc61136ce22f15f8 (diff) | |
| download | rust-790012ad7767fd38f9aa16cfafeb8459249c082e.tar.gz rust-790012ad7767fd38f9aa16cfafeb8459249c082e.zip | |
Allow unused_extern_crates for now
| -rw-r--r-- | mini-macro/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mini-macro/src/lib.rs b/mini-macro/src/lib.rs index 60ffd94e733..92b6f701555 100644 --- a/mini-macro/src/lib.rs +++ b/mini-macro/src/lib.rs @@ -1,5 +1,7 @@ #![feature(proc_macro_quote, proc_macro_hygiene)] #![deny(rust_2018_idioms)] +// FIXME: Remove this attribute once the weird failure is gone. +#![allow(unused_extern_crates)] extern crate proc_macro; use proc_macro::{quote, TokenStream}; |
