* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / ctor3.C
blobe597d926f40d2032b2cc4b1c6adc4a95e38b3d77
1 // PR c++/25633
3 struct A {};
5 struct B : A
7   B() : A {}                    // { dg-error "initializer|expected" }
8 };