4 // This test makes sure that the stuff in lex.c (real_yylex) is
5 // set up to handle real and imag numbers correctly. This test is against
6 // a bug where the compiler was not converting the integer `90' to a
7 // complex number, unless you did `90.0'. Fixed 10/1/1997.
10 int printf (const char *, ...);
15 __complex__ double cd;
25 if (__real__ cd != 1 || __imag__ cd != 90)