2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 960512-1.c
bloba7c1d5fb47c00133b83c1197ac8095083529374d
1 __complex__
2 double f ()
4 int a[40];
5 __complex__ double c;
7 a[9] = 0;
8 c = a[9];
9 return c;
12 main ()
14 __complex__ double c;
16 if (c = f ())
17 abort ();
18 exit (0);