2012-12-11 01:32:48 +00:00
|
|
|
// 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.
|
|
|
|
|
2012-02-22 05:01:33 +00:00
|
|
|
// Testing shifts for various combinations of integers
|
|
|
|
// Issue #1570
|
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2012-02-22 05:01:33 +00:00
|
|
|
test_misc();
|
|
|
|
test_expr();
|
|
|
|
test_const();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_misc() {
|
2015-01-25 21:05:03 +00:00
|
|
|
assert_eq!(1 << 1 << 1 << 1 << 1 << 1, 32);
|
2012-02-22 05:01:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test_expr() {
|
|
|
|
let v10 = 10 as uint;
|
|
|
|
let v4 = 4 as u8;
|
|
|
|
let v2 = 2 as u8;
|
2014-04-21 21:58:52 +00:00
|
|
|
assert_eq!(v10 >> v2 as uint, v2 as uint);
|
|
|
|
assert_eq!(v10 << v4 as uint, 160 as uint);
|
2012-02-22 05:01:33 +00:00
|
|
|
|
|
|
|
let v10 = 10 as u8;
|
|
|
|
let v4 = 4 as uint;
|
|
|
|
let v2 = 2 as uint;
|
2014-04-21 21:58:52 +00:00
|
|
|
assert_eq!(v10 >> v2 as uint, v2 as u8);
|
|
|
|
assert_eq!(v10 << v4 as uint, 160 as u8);
|
2012-02-22 05:01:33 +00:00
|
|
|
|
|
|
|
let v10 = 10 as int;
|
|
|
|
let v4 = 4 as i8;
|
|
|
|
let v2 = 2 as i8;
|
2014-04-21 21:58:52 +00:00
|
|
|
assert_eq!(v10 >> v2 as uint, v2 as int);
|
|
|
|
assert_eq!(v10 << v4 as uint, 160 as int);
|
2012-02-22 05:01:33 +00:00
|
|
|
|
|
|
|
let v10 = 10 as i8;
|
|
|
|
let v4 = 4 as int;
|
|
|
|
let v2 = 2 as int;
|
2014-04-21 21:58:52 +00:00
|
|
|
assert_eq!(v10 >> v2 as uint, v2 as i8);
|
|
|
|
assert_eq!(v10 << v4 as uint, 160 as i8);
|
2012-02-22 05:01:33 +00:00
|
|
|
|
|
|
|
let v10 = 10 as uint;
|
|
|
|
let v4 = 4 as int;
|
|
|
|
let v2 = 2 as int;
|
2014-04-21 21:58:52 +00:00
|
|
|
assert_eq!(v10 >> v2 as uint, v2 as uint);
|
|
|
|
assert_eq!(v10 << v4 as uint, 160 as uint);
|
2012-02-22 05:01:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test_const() {
|
2015-02-18 10:42:01 +00:00
|
|
|
static r1_1: uint = 10_usize >> 2_usize;
|
|
|
|
static r2_1: uint = 10_usize << 4_usize;
|
2013-05-19 02:02:45 +00:00
|
|
|
assert_eq!(r1_1, 2 as uint);
|
|
|
|
assert_eq!(r2_1, 160 as uint);
|
2012-02-22 05:01:33 +00:00
|
|
|
|
2015-02-18 10:42:01 +00:00
|
|
|
static r1_2: u8 = 10u8 >> 2_usize;
|
|
|
|
static r2_2: u8 = 10u8 << 4_usize;
|
2013-05-19 02:02:45 +00:00
|
|
|
assert_eq!(r1_2, 2 as u8);
|
|
|
|
assert_eq!(r2_2, 160 as u8);
|
2012-02-22 05:01:33 +00:00
|
|
|
|
2015-02-18 10:42:01 +00:00
|
|
|
static r1_3: int = 10 >> 2_usize;
|
|
|
|
static r2_3: int = 10 << 4_usize;
|
2013-05-19 02:02:45 +00:00
|
|
|
assert_eq!(r1_3, 2 as int);
|
|
|
|
assert_eq!(r2_3, 160 as int);
|
2012-02-22 05:01:33 +00:00
|
|
|
|
2015-02-18 10:42:01 +00:00
|
|
|
static r1_4: i8 = 10i8 >> 2_usize;
|
|
|
|
static r2_4: i8 = 10i8 << 4_usize;
|
2013-05-19 02:02:45 +00:00
|
|
|
assert_eq!(r1_4, 2 as i8);
|
|
|
|
assert_eq!(r2_4, 160 as i8);
|
2012-02-22 05:01:33 +00:00
|
|
|
|
2015-02-18 10:42:01 +00:00
|
|
|
static r1_5: uint = 10_usize >> 2_usize;
|
|
|
|
static r2_5: uint = 10_usize << 4_usize;
|
2013-05-19 02:02:45 +00:00
|
|
|
assert_eq!(r1_5, 2 as uint);
|
|
|
|
assert_eq!(r2_5, 160 as uint);
|
2012-02-22 05:01:33 +00:00
|
|
|
}
|