// PR C++/28906: new on an array causes incomplete arrays to// become complete with the wrong size.// The sizeof machineMain should be 5 and not 100.// { dg-do run }externcharmachineMain[];voidsort(longlen){newchar[100];}charmachineMain[]="main";intmain(void){if(sizeof(machineMain)!=sizeof("main"))__builtin_abort();}