```c++ constexpr int f() { int &a = a; return &a+1-&a; } constexpr int z = f(); ``` Currently accepted with -std=c++23. Should be rejected: the pointer arithmetic is nonsense. CC @shafik @frederick-vs-ja