* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist32.C
blobc5c02fc63dac7eff14a65e9077d226e1a57f87ce
1 // Test that we try normal init if no list ctor is viable.
2 // { dg-do compile { target c++11 } }
4 #include <initializer_list>
6 struct B {};
8 struct C
10   C(B);
13 struct A
15   A(std::initializer_list<int>);
16   A(B) { }
17   A(C);
20 B b;
21 A a{b};