2 // GROUPS passed pointers-to-members
3 template<class T> class TemplA {
8 template<class T> class TemplB {
10 typedef void (T::*TClassMethod)();
14 This line should not crash cuz of the get_decl_list change in this:
15 * cp-tree.c (list_hash_lookup_or_cons): Make sure the type doesn't
16 have TYPE_PTRMEMFUNC_P set before we try to build its
18 (get_decl_list): Likewise, when trying to read it.
20 TemplA<TClassMethod> Tmethod;
28 int main(int, char**) {