Show complex3.c syntax highlighted
/* GCC misfeature maybe ? */
void f()
{
__complex int a;
__complex double b;
__complex double c;
c = 1 ? a : b; /* This should probably be allowed (and is in C9X) */
if (1)
c = a;
else
c = b;
}
See more files for this project here