1 // run-pass
2 
3 
4 
5 
6 // These constants were chosen because they aren't used anywhere
7 // in the rest of the generated code so they're easily grep-able.
8 
main()9 pub fn main() {
10     let mut x: u8 = 19; // 0x13
11 
12     let mut y: u8 = 35; // 0x23
13 
14     x = x + 7; // 0x7
15 
16     y = y - 9; // 0x9
17 
18     assert_eq!(x, y);
19 }
20