标签: c++ c++11 rvalue-reference value-categories
让我们考虑以下代码:
int i=0; using U = int&; U&& x = i; using V = int&&; V& y = i;
您能解释一下这两个参考崩溃规则的动机吗?