cmake/Tests/CompileFeatures/cxx_default_function_template_args.cpp
2016-07-09 11:21:54 +02:00

13 lines
107 B
C++

template <typename T = int>
int someFunc()
{
T t = 0;
return t;
}
void otherFunc()
{
someFunc();
}