aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/explicit22.C
blob: 0f06c53f8fc7ceb4466986fe5cfbd19411882b41 (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link:
// GROUPS passed templates
template <class T, class U>
T foo(T t, U* u);

template <class T>
T foo(T t, T* u);

template <>
int foo<int>(int, int*);