1/* Test operators */
2
3main() {
4    int a;
5    a = a++;
6}
7