blob: 935e8621d41eb8d44213021967be73a9d0ce221b [file] [log] [blame]
// { dg-do link }
// GROUPS passed templates membertemplates
template<class T>
class A
{
};
template<>
class A<float>
{
public:
template<class U>
void func(U v1 = 0) {}
};
int main()
{
A<float> a;
a.func(3);
}