1 // { dg-do run { target c++98_only } }
2 // { dg-options "-ansi -pedantic-errors" }
9 // C90 and C++98: "0x1p+( 0x1p+)"
10 // C99 and C++11: "0x1p+f 0x1p+l"
11 const char *s = xstr(0x1p+f 0x1p+l);
13 extern "C" void abort (void);
14 extern "C" int strcmp (const char *, const char *);
19 if (strcmp (s, "0x1p+( 0x1p+)"))
20 abort (); // Correct C99 and C++11 behavior.
22 return 0; // Correct C90 and C++ behavior.