* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / elision_weak.C
blobe8ba7551d84e9c87499e09f632a4ae727cae7470
1 // { dg-do compile }
3 struct S
5   S() {}
6   S(S&) {}
7 };
9 S f()
11   S s;
12   return s;
15 void g()
17   S s;
18   throw s;