blob: a3108df2f73d04b383f4784c2a8555b87e8c68d7 [file] [log] [blame]
auto sum(int a, int b)
{
return a + b;
}
int someFunc()
{
return sum(3, -3);
}