* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / temp-constructor-bug.C
blob9d8a3bd8be8d25749dc4ac1b110a4dfbaa550031
1 // { dg-do compile { target c++11 } }
2 // { dg-options "" }
4 struct S { };
6 struct T
8   S s;
9 };
11 void f(T const &);
13 void g()
15   f((T){S()});