blob: 3d14c52ca54083cb8d46c487ba36478b0f266567 [file] [log] [blame]
template<typename T = int>
int someFunc()
{
T t = 0;
return t;
}
void otherFunc()
{
someFunc();
}