[cfe-commits] r58866 - in /cfe/trunk: include/clang/AST/DeclBase.h include/clang/Basic/DiagnosticKinds.def lib/Parse/ParseDecl.cpp lib/Sema/SemaDecl.cpp test/SemaCXX/destructor.cpp

Argiris Kirtzidis akyrtzi at gmail.com
Tue Nov 11 15:03:03 PST 2008


Douglas Gregor wrote:
>
> Destructors aren't found by name lookup, so the IdentifierResolver 
> never needs to see them. Same thing with conversion functions and 
> constructors.

gcc compiles:

class C : public B {
  void m() {
    this->~B();
  }
};

Is this incorrect code ?




More information about the cfe-commits mailing list