in cnova/lifetime_safety_samples.cpp [9:17]
void sample1() { int* p = nullptr; { int x = 0; p = &x; *p = 42; } *p = 42; }