Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / template / spec8.C
blob26d207b81315565b47f18bbfbf089dd936854a70
1 // { dg-do compile }
3 // Specialization of member class template.
5 template<class T1> struct A
7   template<class T2> struct B {};
8 }; 
10 template <> template <> struct A<int>::B<int> {};
11 template <> template <class U> struct A<int>::B {}; // { dg-error "specialization" }