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

int main() {
  int x;
  int y;
  int z;
  x = y = z = 1;
  std::cout << x << " " << y << " " << z << "\n";
}