File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed
branches/batch/src/libsyntax Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
29
29
refs/heads/issue-18208-method-dispatch-2: 9e1eae4fb9b6527315b4441cf8a0f5ca911d1671
30
30
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
31
31
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32
- refs/heads/batch: 82a96a11abcb9cc4d342402746af270eb4f28325
32
+ refs/heads/batch: 679514816974f23eff367b37e9082599a25900f0
33
33
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34
34
refs/heads/beta: 496dc4eae7de9d14cd49511a9acfbf5f11ae6c3f
35
35
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
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