rust/src/test/run-pass/u8-incr-decr.rs

18 lines
297 B
Rust
Raw Normal View History

2010-06-23 21:03:09 -07:00
// -*- rust -*-
// These constants were chosen because they aren't used anywhere
// in the rest of the generated code so they're easily grep-able.
fn main() {
2011-07-27 14:19:39 +02:00
let x: u8 = 19u8; // 0x13
2011-07-27 14:19:39 +02:00
let y: u8 = 35u8; // 0x23
x = x + 7u8; // 0x7
y = y - 9u8; // 0x9
assert (x == y);
}