dtor1.C   [plain text]


struct A {};

template <typename T> struct B
{
  B() { A().A::~A(); }
};

B<void> b;