* MAINTAINERS: Add a note that maintainership also includes web
[official-gcc.git] / gcc / testsuite / g++.dg / other / array3.C
blobce3641e8ccd26b07e368434945cc045f336e4626
1 // PR C++/28906: new on an array causes incomplete arrays to
2 // become complete with the wrong size.
4 // the bounds of xvalue_store was being set to include want
5 // which was incorrect.
7 // { dg-do compile }
9 extern unsigned char xvalue_store[];
10 bool reserve (int want)
12   new unsigned char[want];
14 unsigned char xvalue_store[257];