* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb107.C
blob3e90a9cc10a37b39be98a61d358214cb4d47c489
1 // { dg-do assemble  }
2 template <class T>
3 struct X
5     virtual void f(int) const;
6 };
8 template <class T>
9 struct Y: public X<T>
11     virtual void f(int) const;
14 template <class T>
15 void Y<T>::f(int) const
19 template <>
20 void Y<bool>::f(int) const;