jompiler/tests/test-variable-assign.c

7 lines
No EOL
93 B
C

// test-variable-assign.c
int main(int argc, int argv)
{
int x = 5;
x = 10;
return x;
}