1 typedef int TTT; 2 3 int main() { 4 int i = 0; 5 TTT &l_ref = i; 6 TTT &&r_ref = static_cast<TTT &&>(i); 7 return l_ref; // break here 8 } 9