2016-07-09 11:21:54 +02:00

8 lines
69 B
C

int foo()
{
int r = 10;
r++;
int ret = r + 10;
return ret;
}