File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ use std::ascii::AsciiExt;
36
36
37
37
// if you change this list without updating src/doc/reference.md, @cmr will be sad
38
38
static KNOWN_FEATURES : & ' static [ ( & ' static str , Status ) ] = & [
39
- ( "globs" , Active ) ,
39
+ ( "globs" , Accepted ) ,
40
40
( "macro_rules" , Active ) ,
41
41
( "struct_variant" , Accepted ) ,
42
42
( "asm" , Active ) ,
@@ -232,13 +232,7 @@ impl<'a, 'v> Visitor<'v> for PostExpansionVisitor<'a> {
232
232
233
233
fn visit_view_item ( & mut self , i : & ast:: ViewItem ) {
234
234
match i. node {
235
- ast:: ViewItemUse ( ref path) => {
236
- if let ast:: ViewPathGlob ( ..) = path. node {
237
- self . gate_feature ( "globs" , path. span ,
238
- "glob import statements are \
239
- experimental and possibly buggy") ;
240
- }
241
- }
235
+ ast:: ViewItemUse ( ..) => { }
242
236
ast:: ViewItemExternCrate ( ..) => {
243
237
for attr in i. attrs . iter ( ) {
244
238
if attr. name ( ) . get ( ) == "phase" {
You can’t perform that action at this time.
0 commit comments