* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr65127.C
blob2cdb8ee54d5defdd9f0255a64fb1c99e029c202e
1 // PR c++/65127
2 // { dg-do compile { target c++11 } }
4 template <int N>
5 void
6 foo ()
8   static int i {100};
9   struct { int id {i++}; } j;
12 int
13 main ()
15   foo<0> ();