* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / init / new15.C
blob1f57f07dfc3097aff4635d63a6dfbe1f85b04ea3
1 // PR c++/9782
3 extern "C" int printf(const char*, ...);
5 template <int>
6 struct A {
7   A() {printf("A::A()\n");}
8 };
11 struct B {
12   B() {printf("B::B()\n");}
16 int main () {
17   new A<0>[1][1];
18   new B   [1][1];