* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / other / default11.C
blobe747c44a11bbded23c4d102f2eafb336bfd8521e
1 // PR c++/65370
3 template <typename> class C
5   template <typename U>
6   C(const C<U>&, bool = false);
7 };
9 template <>
10 template <typename U>
11 C<int>::C(const C<U>&, bool);