1 // { dg-do compile { target c++11 } }
2 
f(int i)3 void f(int i)
4 {
5   int&& r = static_cast<int&&>(i);
6 }
7