2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit80.C
blob67314b850bf5fdc24cd1d2dab0d337c68484c3de
1 // { dg-do assemble  }
2 // Bug: We were complaining about explicit instantiation of A<T>::B.
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>;