(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
bind.C
// { dg-do compile { target c++11 } }
struct S{};
void f(S&&);

int main()
{
  f(S());
}