// 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 or the MIT license // , 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_eq!(1 << 1 << 1 << 1 << 1 << 1, 32); } fn test_expr() { let v10 = 10 as uint; let v4 = 4 as u8; let v2 = 2 as u8; assert_eq!(v10 >> v2 as uint, v2 as uint); assert_eq!(v10 << v4 as uint, 160 as uint); let v10 = 10 as u8; let v4 = 4 as uint; let v2 = 2 as uint; assert_eq!(v10 >> v2 as uint, v2 as u8); assert_eq!(v10 << v4 as uint, 160 as u8); let v10 = 10 as int; let v4 = 4 as i8; let v2 = 2 as i8; assert_eq!(v10 >> v2 as uint, v2 as int); assert_eq!(v10 << v4 as uint, 160 as int); let v10 = 10 as i8; let v4 = 4 as int; let v2 = 2 as int; assert_eq!(v10 >> v2 as uint, v2 as i8); assert_eq!(v10 << v4 as uint, 160 as i8); let v10 = 10 as uint; let v4 = 4 as int; let v2 = 2 as int; assert_eq!(v10 >> v2 as uint, v2 as uint); assert_eq!(v10 << v4 as uint, 160 as uint); } fn test_const() { static r1_1: uint = 10_usize >> 2_usize; static r2_1: uint = 10_usize << 4_usize; assert_eq!(r1_1, 2 as uint); assert_eq!(r2_1, 160 as uint); static r1_2: u8 = 10u8 >> 2_usize; static r2_2: u8 = 10u8 << 4_usize; assert_eq!(r1_2, 2 as u8); assert_eq!(r2_2, 160 as u8); static r1_3: int = 10 >> 2_usize; static r2_3: int = 10 << 4_usize; assert_eq!(r1_3, 2 as int); assert_eq!(r2_3, 160 as int); static r1_4: i8 = 10i8 >> 2_usize; static r2_4: i8 = 10i8 << 4_usize; assert_eq!(r1_4, 2 as i8); assert_eq!(r2_4, 160 as i8); static r1_5: uint = 10_usize >> 2_usize; static r2_5: uint = 10_usize << 4_usize; assert_eq!(r1_5, 2 as uint); assert_eq!(r2_5, 160 as uint); }