rust/src/test/run-pass/arith-unsigned.rs

37 lines
1.3 KiB
Rust
Raw Normal View History

// 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.
// Unsigned integer operations
pub fn main() {
fail_unless!((0u8 < 255u8));
fail_unless!((0u8 <= 255u8));
fail_unless!((255u8 > 0u8));
fail_unless!((255u8 >= 0u8));
fail_unless!((250u8 / 10u8 == 25u8));
fail_unless!((255u8 % 10u8 == 5u8));
fail_unless!((0u16 < 60000u16));
fail_unless!((0u16 <= 60000u16));
fail_unless!((60000u16 > 0u16));
fail_unless!((60000u16 >= 0u16));
fail_unless!((60000u16 / 10u16 == 6000u16));
fail_unless!((60005u16 % 10u16 == 5u16));
fail_unless!((0u32 < 4000000000u32));
fail_unless!((0u32 <= 4000000000u32));
fail_unless!((4000000000u32 > 0u32));
fail_unless!((4000000000u32 >= 0u32));
fail_unless!((4000000000u32 / 10u32 == 400000000u32));
fail_unless!((4000000005u32 % 10u32 == 5u32));
// 64-bit numbers have some flakiness yet. Not tested
}