1 // PR C++/28906: new on an array causes incomplete arrays to
2 // become complete with the wrong size.
3 // The sizeof machineMain should be 5 and not 100.
7 extern char machineMain[];
12 char machineMain[] = "main";
15 if (sizeof(machineMain)!=sizeof("main"))