* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi-const1.C
blobb5b8dabbcecc70eb56e54cc55a14607c1d41c4cb
1 // PR c++/50707
2 // { dg-do compile { target c++11 } }
4 int g;
6 struct S {
7    int const v=g;
8 };
10 S s;