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.
9 extern unsigned char xvalue_store[];
10 bool reserve (int want)
12 new unsigned char[want];
14 unsigned char xvalue_store[257];