* c-common.c (get_priority): Add check for
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp46.C
blob6afbc6541f2235935890af5cf8d8752ee8697596
1 // { dg-do link  }
2 // GROUPS passed templates membertemplates
3 template<class T, class U>
4 class A
6 };
8 template<class U>
9 class A<float, U>
11 public:
12   template <class V>
13   void func(V v1 = 0) {}
16 int main()
18   A<float, int> a;
19   a.func("abc");