* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / overload-conv-2.C
blobb95994d7fc423d4378d13a4dc0a0ec534ac04d8b
1 // { dg-do link { target c++11 } }
3 struct T {};
4 struct S
6   S(T const &) {}
7 };
9 void f(const S&);
10 void f(S&&) {}
12 int main()
14   T t;
15   f(t);