summaryrefslogtreecommitdiff
path: root/tests/exec/affect.cpp
blob: fd65fd153665120b0a94d84c0a9157a2e2b6a57b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <iostream>

int main() {
  int x = 0;
  int y = 0;
  x = ++y;
  y = ++y + ++x;
  y++;
  x = --x + y;
  std::cout << "x=" << x << "\n";
  std::cout << "y=" << y << "\n";
}