* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist63.C
blob00940479af2490c65fd64b2a7ab23e9275a989fc
1 // Origin PR c++/51475
2 // { dg-do compile { target c++11 } }
4 #include <initializer_list>
6 struct A
8     A(int*);
9 };
11 struct B
13     const std::initializer_list<A>& x;
16 B b = {{1}}; // { dg-error "" }