* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / init / new48.C
blob528a582ea0e93821a09c6317971156278abc94b5
1 // PR c++/78139
3 struct A
5   A(int);
6 private:
7   ~A();
8 };
10 struct B
12   B(void*);
15 int main()
17   B(new A(42));