https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95221
--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Is this code even defined? We call a method after calling the deconstructor on the object? If we do: c->~MyClass (); new(c) MyClass(); c->Doit (); Then it is defined. Or am I wrong about that?