The standard says that dereferencing the
null pointer leads to undefined behaviour. But what is "the
null pointer"? In the following code, what we call "the
null pointer":
struct X
{
static X* get() { return reinterpret_cast<X*>(1); }
void f() { }
};
int main()
{
X* x = 0;
(*x).f(); // the
null pointer? (1)
x = X::get();
…