blob: c53982daa81998283e4ddb18079e95147e9edada [file] [log] [blame]
// Bug: We were complaining about explicit instantiation of A<T>::B.
// Build don't link:
template <class T>
struct A
{
public:
~A() { };
class B;
};
class A<int>::B { };
template class A<int>;
template class A<double>;