* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi-template7.C
blobcec7b7bea2bee697866286b77e862191c64f908b
1 // PR c++/58725
2 // { dg-do compile { target c++11 } }
4 struct A {
5     template<int=0>
6     struct B {
7         struct C {
8             int x = 0;
9             double y = x;
10         } c;
11     };
13 int main() {
14     A::B<>();