cmake/Tests/CompileFeatures/cxx_template_template_parameters.cpp

17 lines
162 B
C++
Raw Normal View History

2015-04-27 22:25:09 +02:00
2016-07-09 11:21:54 +02:00
template <template <typename> class T, typename U>
2015-04-27 22:25:09 +02:00
void someFunc(T<U>)
{
}
2016-07-09 11:21:54 +02:00
template <typename T>
2015-04-27 22:25:09 +02:00
struct A
{
};
void otherFunc()
{
A<int> a;
someFunc(a);
}