cmake/Tests/CompileFeatures/cxx_default_function_template_args.cpp

13 lines
106 B
C++
Raw Normal View History

2015-04-27 22:25:09 +02:00
template<typename T = int>
int someFunc()
{
T t = 0;
return t;
}
void otherFunc()
{
someFunc();
}