gcc/gcc/testsuite/g++.dg/cpp0x/overload-conv-2.C

18 lines
161 B
C

// { dg-options "--std=c++0x" }
// { dg-do link }
struct T {};
struct S
{
S(T const &) {}
};
void f(const S&);
void f(S&&) {}
int main()
{
T t;
f(t);
}