* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / template14.C
blobada87524352026b7c88d69db833bea8a2136e84e
1 // PR c++/14550
3 struct A { 
4   A();
5 };
7 template <int> void foo()
9   A *p = new A;
12 void bar()
14   foo<0>();