* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / init / ref2.C
blob231ea047fff0f84b3e5c002e70a75e6a368dd2bc
1 struct Base {
2         Base();
3   Base(const Base &);
4   Base & operator = (const Base &);
5 };
7 struct Derived : public Base {};
9 Derived derived();
10 const Base &b = derived();