标签: c++ language-lawyer undefined-behavior
标准是否说过这个是UB(或不是)?
int& get() { int a = 1; return a; } int main() { std::cout << (&get() == nullptr); }