3 // Copyright (C) 1999 Free Software Foundation
5 // by Alexandre Oliva <oliva@dcc.unicamp.br>
6 // simplified from bug report by Michael Rosenbruch <Rosenbruch@bfw-online.de>
9 extern "C" void abort();
13 char *y = x ? /* implicit x */ : 0;
14 /* For some reason, the array x is copied twice, and y points to the
15 second copy (the first is never used). If x is explicit, no copy
16 is created, and the program succeeds. */