* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr71248.C
blobe996351a348951e67bf4a1ae0bfc8ad05671d49f
1 // PR c++/71248
2 // { dg-do compile { target c++11 } }
4 struct S
6     int a;
7     static int S::*typeMembers[] = {  // { dg-error "20:in-class initialization" }
8         &S::a,
9     };