* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi7.C
blobe378360a75912df44802254b096ae6a8c57ef0dc
1 // PR c++/53594
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-Wuninitialized" }
5 struct A
7   const int a = 6;      // { dg-bogus "non-static const member" }
8   static int b;
9   int &c = b;           // { dg-bogus "non-static reference" }
12 struct B
14   virtual void g();
15   const int d;          // { dg-warning "non-static const member" }
16   int &e;               // { dg-warning "non-static reference" }
17   int f = 7;