* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / init / new20.C
blob705c1be482f979a4cb5d4908a5d112a54dc3793f
1 // PR c++/31743\r
2 typedef int A[];\r
3 A* p = new A;   // { dg-error "invalid use of array with unspecified bounds" }\r
4 A* q = new (A); // { dg-error "invalid use of array with unspecified bounds" }\r
5 \r
6 \r