view gcc/testsuite/g++.dg/other/array3.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// PR C++/28906: new on an array causes incomplete arrays to
// become complete with the wrong size.

// the bounds of xvalue_store was being set to include want
// which was incorrect.

// { dg-do compile }

extern unsigned char xvalue_store[];
bool reserve (int want)
{
  new unsigned char[want];
  return true;
}
unsigned char xvalue_store[257];