(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
rv-cast.C
// { dg-do compile { target c++11 } }

void f(int i)
{
  int&& r = static_cast<int&&>(i);
}