diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-11-01 13:07:25 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-11-01 13:08:03 +0100 |
commit | 2bee7400579a21bf965491410fa1d16b87880fe6 (patch) | |
tree | ff1ba2a4d35ac09f107c01d9c8749774706587fe /components/script_plugins/lib.rs | |
parent | 77112b2b8ef7b3bff63c4aeee021754a3fa0923b (diff) | |
download | servo-2bee7400579a21bf965491410fa1d16b87880fe6.tar.gz servo-2bee7400579a21bf965491410fa1d16b87880fe6.zip |
Fix new failure in Nightly 2017-11-01.
The rustc::declare_lints! macro started using a :vis fragment specifier.
Diffstat (limited to 'components/script_plugins/lib.rs')
-rw-r--r-- | components/script_plugins/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script_plugins/lib.rs b/components/script_plugins/lib.rs index c4b5601b8ee..a929f394c21 100644 --- a/components/script_plugins/lib.rs +++ b/components/script_plugins/lib.rs @@ -15,6 +15,7 @@ #![deny(unsafe_code)] +#![feature(macro_vis_matcher)] #![feature(plugin)] #![feature(plugin_registrar)] #![feature(rustc_private)] |