2009-10-04 10:30:41 +03:00

8 lines
67 B
C

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