]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/xcrate-static-addresses.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / xcrate-static-addresses.rs
index 059a6f75ac82e2cbbdc92dc96bc64bb826dc0f36..6afa02fce55149a45552a0953c317d684b9fe5d4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
+// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
 //
@@ -8,20 +8,13 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// xfail-fast
 // aux-build:xcrate_static_addresses.rs
 
-extern mod xcrate_static_addresses;
+extern crate xcrate_static_addresses;
 
-use other = xcrate_static_addresses;
+use xcrate_static_addresses as other;
 
 pub fn main() {
     other::verify_same(&other::global);
-
-    // Previously this fail'd because there were two addresses that were being
-    // used when declaring constants.
-    do other::test::cond.trap(|_| {
-    }).inside {
-        other::raise();
-    }
+    other::verify_same2(other::global2);
 }