aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/u8-incr.rs
blob: 602d83c66c5c83aca16b6daa90bd54eb3d61a335 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// -*- rust -*-

fn main() {
  let u8 x = 12u8;
  let u8 y = 12u8;
  x = x + (1u8);
  x = x - (1u8);
  check(x == y);
  // x = 14u8;
  // x = x + 1u8;
}