// 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!(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); }