1 struct A {};
2 
3 template <typename T> struct B
4 {
BB5   B() { A().A::~A(); }
6 };
7 
8 B<void> b;
9