* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist96.C
blob94e9c0eb148dbb90305f392184867a4fec39c5a4
1 // PR c++/66515
2 // { dg-do compile { target c++11 } }
3 // { dg-additional-options "-Wno-return-type" }
5 #include <initializer_list>
7 struct type_t { };
9 type_t &
10 get ()
12   std::initializer_list<type_t>{ { get () } };