]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/bitwise.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / bitwise.rs
index c2d5f17054d58e824929fe06012bad04deeead6f..251804e214b6022e9c04ed61b128e13b2ecd79e6 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
+// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
 //
@@ -14,7 +14,7 @@ fn target() {
     assert_eq!(-1000 as uint >> 3u, 536870787u);
 }
 
-#[cfg(target_arch = "x86_64")]
+#[cfg(any(target_arch = "x86_64", target_arch = "aarch64"))]
 fn target() {
     assert_eq!(-1000 as uint >> 3u, 2305843009213693827u);
 }