* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi-template8.C
blobef0dddd7310e7438827854a4bdb094a45bdc07b9
1 // PR c++/58188
2 // { dg-do compile { target c++11 } }
4 struct B {};
5 struct A
7   A( B );
8 };
10 struct Bar
12   template< unsigned v >
13   struct Foo
14   {
15     A z = B();
16     unsigned value;
17     Foo(): value( v ) {}
18   };
20   struct Baz
21   {
22     Foo< 8 > foo1;
23     Foo< 1 > foo3;
24   };
27 Bar::Baz baz;