about summary refs log tree commit diff
path: root/src/test/compile-fail
diff options
context:
space:
mode:
authorJeffrey Seyfried <jeffrey.seyfried@gmail.com>2016-01-23 01:42:19 +0000
committerJeffrey Seyfried <jeffrey.seyfried@gmail.com>2016-01-23 08:05:57 +0000
commitf05bc16a5d8bb1bfb0ee2b281fb3dc6fdefa258c (patch)
tree10070aa21326524cd2fcd2ee707f3f8657ca86eb /src/test/compile-fail
parent54475e950cf3db909c4dec4a30c72f7636ab4e07 (diff)
downloadrust-f05bc16a5d8bb1bfb0ee2b281fb3dc6fdefa258c.tar.gz
rust-f05bc16a5d8bb1bfb0ee2b281fb3dc6fdefa258c.zip
Resolve: stop requiring that use declarations precede statements in blocks
Diffstat (limited to 'src/test/compile-fail')
-rw-r--r--src/test/compile-fail/blind-item-block-middle.rs1
-rw-r--r--src/test/compile-fail/blind-item-local-shadow.rs20
2 files changed, 0 insertions, 21 deletions
diff --git a/src/test/compile-fail/blind-item-block-middle.rs b/src/test/compile-fail/blind-item-block-middle.rs
index fbb0730f014..24a1e4e24d8 100644
--- a/src/test/compile-fail/blind-item-block-middle.rs
+++ b/src/test/compile-fail/blind-item-block-middle.rs
@@ -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
index 5cc087cb66e..00000000000
--- a/src/test/compile-fail/blind-item-local-shadow.rs
+++ /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);
-}