preprocessor: Create the parser before handling command-line includes [PR115312]
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20041124-1.c
blob09b0714270a3c8db3032c546df09d7936bf65b2f
1 void abort (void);
2 void exit (int);
4 struct s { _Complex unsigned short x; };
5 struct s gs = { 100 + 200i };
6 struct s __attribute__((noinline)) foo (void) { return gs; }
8 int main ()
10 if (foo ().x != gs.x)
11 abort ();
12 exit (0);