* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist11.C
blob024466ea866b28d0885781f1826264120b085fd5
1 // PR c++/38684
2 // { dg-do compile { target c++11 } }
4 #include <initializer_list>
6 struct Y {};
8 struct X : Y { 
9   X(std::initializer_list<int>) {}
10 }; 
12 struct A { 
13   X v;
16 int main() {
17   A a{ {1,2,3} };