summaryrefslogblamecommitdiff
path: root/tests/sources/0201_assign_cst2.c
blob: 6f280618bcf944e2f46a9b9769aab424137cbb81 (plain) (tree)
1
2
3
4
5
6
7






           
int x, y;
print(x,y);
x = 12;
print(x,y);
y = 15;
x = 99;
print(x,y);