* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist35.C
blobf8b824d4562028457460e6a35d3ad3fd4670446c
1 // PR c++/41510
2 // { dg-do compile { target c++11 } }
4 struct B
6   B(int, int);
7 };
8 struct A
10   A(int, int);
11   A(const B&);
14 void f()
16   A a = { 1, 2 };
19 template <class T> void g()
21   A a = { 1, 2 };
24 template void g<int>();