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