* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / template4.C
blob61ad1cc6b37e42e172fec6506072695f6359f7f4
1 // { dg-do assemble  }
2 // GROUPS passed templates
3 // This used to be a circularity in chainon.
4 template <class ARG> struct TMPL {
5     typedef int ARG::*ARG_data_member_ptr;
6     typedef void (ARG::*ARG_func_member_ptr) ();
7 };
9 struct S { };
11 TMPL<S> object;