]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/struct-destructuring-cross-crate.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / struct-destructuring-cross-crate.rs
index 55d25845971aaa64861747e47efc7ae79b4d5b59..2de2bcc958471c2566f0106dbb9030486c45a2ae 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
+// Copyright 2012-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,14 +8,13 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// xfail-fast
 // aux-build:struct_destructuring_cross_crate.rs
 
-extern mod struct_destructuring_cross_crate;
+extern crate struct_destructuring_cross_crate;
 
 pub fn main() {
     let x = struct_destructuring_cross_crate::S { x: 1, y: 2 };
     let struct_destructuring_cross_crate::S { x: a, y: b } = x;
-    assert!(a == 1);
-    assert!(b == 2);
+    assert_eq!(a, 1);
+    assert_eq!(b, 2);
 }