From 2f030966bfc49802d2eba5fcea4464af0be27d0b Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Wed, 20 Sep 2017 15:27:00 -0700 Subject: [PATCH] Split feature gates into lines for easy grepping --- components/script_plugins/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/components/script_plugins/lib.rs b/components/script_plugins/lib.rs index b35acdf3109..7548ccd92d2 100644 --- a/components/script_plugins/lib.rs +++ b/components/script_plugins/lib.rs @@ -15,7 +15,10 @@ #![deny(unsafe_code)] -#![feature(box_syntax, plugin, plugin_registrar, rustc_private)] +#![feature(box_syntax)] +#![feature(plugin)] +#![feature(plugin_registrar)] +#![feature(rustc_private)] #[macro_use] extern crate rustc;