]> git.lizzy.rs Git - rust.git/commitdiff
Resolve: stop requiring that use declarations precede statements in blocks
authorJeffrey Seyfried <jeffrey.seyfried@gmail.com>
Sat, 23 Jan 2016 01:42:19 +0000 (01:42 +0000)
committerJeffrey Seyfried <jeffrey.seyfried@gmail.com>
Sat, 23 Jan 2016 08:05:57 +0000 (08:05 +0000)
src/librustc_resolve/lib.rs
src/test/compile-fail/blind-item-block-middle.rs
src/test/compile-fail/blind-item-local-shadow.rs [deleted file]
src/test/run-pass/blind-item-local-shadow.rs [new file with mode: 0644]

index 444c43163e3c3ad4f1113e8b463ab98c4e0be5cf..1360f6584bda5285f3f42d95aee1bcc4b213c08b 100644 (file)
@@ -2508,29 +2508,6 @@ fn resolve_block(&mut self, block: &Block) {
             }
         }
 
-        // Check for imports appearing after non-item statements.
-        let mut found_non_item = false;
-        for statement in &block.stmts {
-            if let hir::StmtDecl(ref declaration, _) = statement.node {
-                if let hir::DeclItem(i) = declaration.node {
-                    let i = self.ast_map.expect_item(i.id);
-                    match i.node {
-                        ItemExternCrate(_) | ItemUse(_) if found_non_item => {
-                            span_err!(self.session,
-                                      i.span,
-                                      E0154,
-                                      "imports are not allowed after non-item statements");
-                        }
-                        _ => {}
-                    }
-                } else {
-                    found_non_item = true
-                }
-            } else {
-                found_non_item = true;
-            }
-        }
-
         // Descend into the block.
         intravisit::walk_block(self, block);
 
index fbb0730f014617085816387c49f7e8b206eff558..24a1e4e24d81a959f3b29345ad3bf597b454e144 100644 (file)
@@ -14,5 +14,4 @@ fn main() {
     let bar = 5;
     //~^ ERROR declaration of `bar` shadows an enum variant or unit-like struct in scope
     use foo::bar;
-    //~^ ERROR imports are not allowed after non-item statements
 }
diff --git a/src/test/compile-fail/blind-item-local-shadow.rs b/src/test/compile-fail/blind-item-local-shadow.rs
deleted file mode 100644 (file)
index 5cc087c..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
-mod bar {
-    pub fn foo() -> bool { true }
-}
-
-fn main() {
-    let foo = || false;
-    use bar::foo;
-    //~^ ERROR imports are not allowed after non-item statements
-    assert_eq!(foo(), false);
-}
diff --git a/src/test/run-pass/blind-item-local-shadow.rs b/src/test/run-pass/blind-item-local-shadow.rs
new file mode 100644 (file)
index 0000000..bb654b1
--- /dev/null
@@ -0,0 +1,19 @@
+// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+mod bar {
+    pub fn foo() -> bool { true }
+}
+
+fn main() {
+    let foo = || false;
+    use bar::foo;
+    assert_eq!(foo(), false);
+}