blob: d57dd3698de85f443ad7b7158d5d72307f86f68a [file] [log] [blame]
template <template <typename> class T, typename U>
void someFunc(T<U>)
{
}
template <typename T>
struct A
{
};
void otherFunc()
{
A<int> a;
someFunc(a);
}