]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/bitwise.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / bitwise.rs
1 // Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11
12 #[cfg(any(target_arch = "x86", target_arch = "arm"))]
13 fn target() {
14     assert_eq!(-1000 as uint >> 3u, 536870787u);
15 }
16
17 #[cfg(any(target_arch = "x86_64", target_arch = "aarch64"))]
18 fn target() {
19     assert_eq!(-1000 as uint >> 3u, 2305843009213693827u);
20 }
21
22 fn general() {
23     let mut a: int = 1;
24     let mut b: int = 2;
25     a ^= b;
26     b ^= a;
27     a = a ^ b;
28     println!("{}", a);
29     println!("{}", b);
30     assert_eq!(b, 1);
31     assert_eq!(a, 2);
32     assert_eq!(!0xf0i & 0xff, 0xf);
33     assert_eq!(0xf0i | 0xf, 0xff);
34     assert_eq!(0xfi << 4, 0xf0);
35     assert_eq!(0xf0i >> 4, 0xf);
36     assert_eq!(-16i >> 2, -4);
37     assert_eq!(0b1010_1010i | 0b0101_0101, 0xff);
38 }
39
40 pub fn main() {
41     general();
42     target();
43 }