* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi-defer2.C
blob96ed2c8acfec8610b535c63cedb0528f88dc8cc5
1 // { dg-do compile { target c++11 } }
3 struct A
5   int i = f();
6   static int f(int i = 42) { return i; }
7 };
9 A a;