summary refs log tree commit diff
path: root/src/test/run-pass/shift.rs
blob: d839825a773c272690686cd9bbadb1c1e4e8d110 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright 2012 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.

// Testing shifts for various combinations of integers
// Issue #1570

pub fn main() {
    test_misc();
    test_expr();
    test_const();
}

fn test_misc() {
    assert!(1 << 1i8 << 1u8 << 1i16 << 1 as char << 1u64 == 32);
}

fn test_expr() {
    let v10 = 10 as uint;
    let v4 = 4 as u8;
    let v2 = 2 as u8;
    assert!((v10 >> v2 == v2 as uint));
    assert!((v10 << v4 == 160 as uint));

    let v10 = 10 as u8;
    let v4 = 4 as uint;
    let v2 = 2 as uint;
    assert!((v10 >> v2 == v2 as u8));
    assert!((v10 << v4 == 160 as u8));

    let v10 = 10 as int;
    let v4 = 4 as i8;
    let v2 = 2 as i8;
    assert!((v10 >> v2 == v2 as int));
    assert!((v10 << v4 == 160 as int));

    let v10 = 10 as i8;
    let v4 = 4 as int;
    let v2 = 2 as int;
    assert!((v10 >> v2 == v2 as i8));
    assert!((v10 << v4 == 160 as i8));

    let v10 = 10 as uint;
    let v4 = 4 as int;
    let v2 = 2 as int;
    assert!((v10 >> v2 == v2 as uint));
    assert!((v10 << v4 == 160 as uint));
}

fn test_const() {
    static r1_1: uint = 10u >> 2u8;
    static r2_1: uint = 10u << 4u8;
    assert!(r1_1 == 2 as uint);
    assert!(r2_1 == 160 as uint);

    static r1_2: u8 = 10u8 >> 2u;
    static r2_2: u8 = 10u8 << 4u;
    assert!(r1_2 == 2 as u8);
    assert!(r2_2 == 160 as u8);

    static r1_3: int = 10 >> 2i8;
    static r2_3: int = 10 << 4i8;
    assert!(r1_3 == 2 as int);
    assert!(r2_3 == 160 as int);

    static r1_4: i8 = 10i8 >> 2;
    static r2_4: i8 = 10i8 << 4;
    assert!(r1_4 == 2 as i8);
    assert!(r2_4 == 160 as i8);

    static r1_5: uint = 10u >> 2i8;
    static r2_5: uint = 10u << 4i8;
    assert!(r1_5 == 2 as uint);
    assert!(r2_5 == 160 as uint);
}