* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist84.C
blob4d46746c52fd40d299e3b4f32bb3d93a4edfdff6
1 // PR c++/61242
2 // { dg-do compile { target c++11 } }
4 struct Foo
6   struct A
7   {
8     const int &container;
9     const int &args;
10   };
11   static void Create (const A &);
14 int main ()
16   Foo::Create ({{}, {}});