dtor.C   [plain text]


struct A {
  ~A();
};

struct B {
  ~B();
};

int main()
{
  A a;
  a.~B();			// ERROR - wrong name
}