* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr68116.C
blob04ed901ad40c449334ec26cc4a266f77eaaf5f4c
1 // PR c++/68116
2 // { dg-do compile { target c++11 } }
4 class C {
5   void foo ();
6   typedef void (C::*T) (int);
7   static T b[];
8 };
9 C::T C::b[]
11   T (&C::foo)