(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
overload-conv-2.C
// { dg-do link { target c++11 } }

struct T {};
struct S
{
  S(T const &) {}
};

void f(const S&);
void f(S&&) {}

int main()
{
  T t;
  f(t);
}