blob: a921d9f7ddc7bf661ab20a871fcd003ede86e00c (
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
|
// 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() {
assert!((0u8 < 255u8));
assert!((0u8 <= 255u8));
assert!((255u8 > 0u8));
assert!((255u8 >= 0u8));
assert!((250u8 / 10u8 == 25u8));
assert!((255u8 % 10u8 == 5u8));
assert!((0u16 < 60000u16));
assert!((0u16 <= 60000u16));
assert!((60000u16 > 0u16));
assert!((60000u16 >= 0u16));
assert!((60000u16 / 10u16 == 6000u16));
assert!((60005u16 % 10u16 == 5u16));
assert!((0u32 < 4000000000u32));
assert!((0u32 <= 4000000000u32));
assert!((4000000000u32 > 0u32));
assert!((4000000000u32 >= 0u32));
assert!((4000000000u32 / 10u32 == 400000000u32));
assert!((4000000005u32 % 10u32 == 5u32));
// 64-bit numbers have some flakiness yet. Not tested
}
|