Skip to content

Commit b98a589

Browse files
committed
Remove use of globs feature gate from tests.
1 parent 4016c72 commit b98a589

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+8
-76
lines changed

src/test/auxiliary/issue_2316_b.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
#![allow(unused_imports)]
12-
#![feature(globs)]
1312

1413
extern crate issue_2316_a;
1514

src/test/auxiliary/macro_crate_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
// force-host
1212

13-
#![feature(globs, plugin_registrar, macro_rules, quote)]
13+
#![feature(plugin_registrar, macro_rules, quote)]
1414

1515
extern crate syntax;
1616
extern crate rustc;

src/test/auxiliary/namespaced_enum_emulate_flat.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10-
#![feature(globs)]
1110

1211
pub use Foo::*;
1312

@@ -34,5 +33,3 @@ pub mod nest {
3433
pub fn foo() {}
3534
}
3635
}
37-
38-

src/test/auxiliary/syntax-extension-with-dll-deps-2.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// force-host
1212

1313
#![crate_type = "dylib"]
14-
#![feature(plugin_registrar, quote, globs)]
14+
#![feature(plugin_registrar, quote)]
1515

1616
extern crate "syntax-extension-with-dll-deps-1" as other;
1717
extern crate syntax;

src/test/compile-fail/glob-resolve1.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
// Make sure that globs only bring in public things.
1212

13-
#![feature(globs)]
14-
1513
use bar::*;
1614

1715
mod bar {

src/test/compile-fail/import-glob-0.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
// error-pattern: unresolved name
1212

13-
#![feature(globs)]
14-
1513
use module_of_many_things::*;
1614

1715
mod module_of_many_things {

src/test/compile-fail/import-glob-circular.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
// error-pattern: unresolved
1212

13-
#![feature(globs)]
14-
1513
mod circ1 {
1614
pub use circ2::f2;
1715
pub fn f1() { println!("f1"); }

src/test/compile-fail/import-shadow-1.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// Test that import shadowing using globs causes errors
1212

1313
#![no_implicit_prelude]
14-
#![feature(globs)]
1514

1615
use foo::*;
1716
use bar::*; //~ERROR a type named `Baz` has already been imported in this module

src/test/compile-fail/import-shadow-2.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// Test that import shadowing using globs causes errors
1212

1313
#![no_implicit_prelude]
14-
#![feature(globs)]
1514

1615
use foo::*;
1716
use foo::*; //~ERROR a type named `Baz` has already been imported in this module

src/test/compile-fail/import-shadow-3.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// Test that import shadowing using globs causes errors
1212

1313
#![no_implicit_prelude]
14-
#![feature(globs)]
1514

1615
use foo::Baz;
1716
use bar::*; //~ERROR a type named `Baz` has already been imported in this module

0 commit comments

Comments
 (0)