赋值函数需要返回当前被赋值对象的引用(非常量引用)

void test()
{
int h;
int & g = (h = 1);
}

上面操作并未告警,所以....

相关文章: