FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit80.C
blob2cbdeab0cb65a6ba6973f5b41b2e4ffe280ad491
1 // Bug: We were complaining about explicit instantiation of A<T>::B.
2 // Build don't link:
4 template <class T>
5 struct A
7  public:
8   ~A() { };
10   class B;
13 template <> class A<int>::B { };
15 template class A<int>;
16 template class A<double>;