blob: 4e37971cdf233bad7ded9e4144f60eb4c14dad7a [file] [log] [blame]
// { dg-do assemble }
// Bug: We were complaining about explicit instantiation of A<T>::B.
template <class T>
struct A
{
public:
~A() { }
class B;
};
template <> class A<int>::B { };
template class A<int>;
template class A<double>;