* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi-template4.C
blobff8dc7e932bc9d137ec1f9f422f575c1b412e2ae
1 // PR c++/57887
2 // { dg-do compile { target c++11 } }
4 struct B
6   template<int N>
7   struct A
8   {
9     int X = N;
10   };
13 template<int M>
14 struct C
16   int Y = M;
18   template<int N>
19   struct A
20   {
21     int X = N;
22     int Y = M;
23   };