Navigation Menu

Skip to content

Commit

Permalink
remove uses of feature gate
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-i-m committed Nov 27, 2018
1 parent f3b29ca commit 59ae93d
Show file tree
Hide file tree
Showing 15 changed files with 0 additions and 16 deletions.
1 change: 0 additions & 1 deletion src/doc/unstable-book/src/language-features/plugin.md
Expand Up @@ -181,7 +181,6 @@ that warns about any item named `lintme`.
```rust,ignore
#![feature(plugin_registrar)]
#![feature(box_syntax, rustc_private)]
#![feature(macro_at_most_once_rep)]
extern crate syntax;
Expand Down
1 change: 0 additions & 1 deletion src/libcore/lib.rs
Expand Up @@ -93,7 +93,6 @@
#![feature(never_type)]
#![feature(nll)]
#![feature(exhaustive_patterns)]
#![feature(macro_at_most_once_rep)]
#![feature(no_core)]
#![feature(on_unimplemented)]
#![feature(optin_builtin_traits)]
Expand Down
1 change: 0 additions & 1 deletion src/librustc/lib.rs
Expand Up @@ -67,7 +67,6 @@
#![feature(integer_atomics)]
#![feature(test)]
#![feature(in_band_lifetimes)]
#![feature(macro_at_most_once_rep)]
#![feature(crate_visibility_modifier)]
#![feature(transpose_result)]

Expand Down
1 change: 0 additions & 1 deletion src/librustc_lint/lib.rs
Expand Up @@ -29,7 +29,6 @@
#![feature(nll)]
#![feature(quote)]
#![feature(rustc_diagnostic_macros)]
#![feature(macro_at_most_once_rep)]

#[macro_use]
extern crate syntax;
Expand Down
1 change: 0 additions & 1 deletion src/librustc_metadata/lib.rs
Expand Up @@ -14,7 +14,6 @@

#![feature(box_patterns)]
#![feature(libc)]
#![feature(macro_at_most_once_rep)]
#![feature(nll)]
#![feature(proc_macro_internals)]
#![feature(proc_macro_quote)]
Expand Down
1 change: 0 additions & 1 deletion src/libsyntax/lib.rs
Expand Up @@ -20,7 +20,6 @@
test(attr(deny(warnings))))]

#![feature(crate_visibility_modifier)]
#![feature(macro_at_most_once_rep)]
#![feature(nll)]
#![feature(rustc_attrs)]
#![feature(rustc_diagnostic_macros)]
Expand Down
1 change: 0 additions & 1 deletion src/test/compile-fail-fulldeps/auxiliary/lint_for_crate.rs
Expand Up @@ -12,7 +12,6 @@

#![feature(plugin_registrar, rustc_private)]
#![feature(box_syntax)]
#![feature(macro_at_most_once_rep)]

#[macro_use] extern crate rustc;
extern crate rustc_plugin;
Expand Down
Expand Up @@ -12,7 +12,6 @@

#![feature(plugin_registrar)]
#![feature(box_syntax, rustc_private)]
#![feature(macro_at_most_once_rep)]

// Load rustc as a plugin to get macros
#[macro_use]
Expand Down
Expand Up @@ -12,7 +12,6 @@

#![feature(plugin_registrar)]
#![feature(box_syntax, rustc_private)]
#![feature(macro_at_most_once_rep)]

extern crate syntax;

Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass-fulldeps/auxiliary/lint_for_crate.rs
Expand Up @@ -12,7 +12,6 @@

#![feature(plugin_registrar, rustc_private)]
#![feature(box_syntax)]
#![feature(macro_at_most_once_rep)]

#[macro_use] extern crate rustc;
extern crate rustc_plugin;
Expand Down
Expand Up @@ -9,7 +9,6 @@
// except according to those terms.

#![feature(box_syntax, plugin, plugin_registrar, rustc_private)]
#![feature(macro_at_most_once_rep)]
#![crate_type = "dylib"]

#[macro_use]
Expand Down
2 changes: 0 additions & 2 deletions src/test/run-pass/macros/macro-at-most-once-rep.rs
Expand Up @@ -22,8 +22,6 @@

// edition:2018

#![feature(macro_at_most_once_rep)]

macro_rules! foo {
($($a:ident)? ; $num:expr) => { {
let mut x = 0;
Expand Down
1 change: 0 additions & 1 deletion src/test/ui-fulldeps/auxiliary/lint_group_plugin_test.rs
Expand Up @@ -12,7 +12,6 @@

#![feature(plugin_registrar)]
#![feature(box_syntax, rustc_private)]
#![feature(macro_at_most_once_rep)]

// Load rustc as a plugin to get macros
#[macro_use]
Expand Down
1 change: 0 additions & 1 deletion src/test/ui-fulldeps/auxiliary/lint_plugin_test.rs
Expand Up @@ -12,7 +12,6 @@

#![feature(plugin_registrar)]
#![feature(box_syntax, rustc_private)]
#![feature(macro_at_most_once_rep)]

extern crate syntax;

Expand Down
1 change: 0 additions & 1 deletion src/test/ui-fulldeps/auxiliary/lint_tool_test.rs
Expand Up @@ -10,7 +10,6 @@

#![feature(plugin_registrar)]
#![feature(box_syntax, rustc_private)]
#![feature(macro_at_most_once_rep)]

extern crate syntax;

Expand Down

0 comments on commit 59ae93d

Please sign in to comment.