Justin Bogner | bf42cfd | 2015-02-18 21:24:51 +0000 | [diff] [blame] | 1 | // Some code for the middle of a program |
2 | |||||
Alex Lorenz | 34ac9b5 | 2014-08-19 17:32:30 +0000 | [diff] [blame] | 3 | x = x; |
4 | if (x == 0) { | ||||
5 | x = 1; | ||||
6 | } else { | ||||
7 | x = 2; | ||||
8 | } | ||||
9 | if (true) { | ||||
10 | x = x; | ||||
11 | } else { | ||||
12 | x = x; | ||||
13 | } |