'function' : new/delete member functions do not have 'this' pointers
A new or delete tried to access this.
Example
class C { void* operator new( unsigned int ) { this = 10; // error return 0; } };