* gcc.dg/cpp/20000628-1a.h: On each of the first three inclusions,
[official-gcc.git] / gcc / testsuite / gcc.c-torture / noncompile / 930714-1.c
blobd940c550f57612df4940ec646a4e73e944a69cf2
1 typedef union _yystype
3 int i;
4 int *iptr;
5 int (*ifunc)(int);
6 void (*vfunc)(int);
8 YYSTYPE;
10 extern int f1(int k);
12 void test()
14 YYSTYPE a;
15 int (*iptr)(int);
16 int foo[5];
18 a = f1;
19 a = (YYSTYPE)f1;
20 a = (YYSTYPE)foo;
21 a = (YYSTYPE)(int *)foo;
22 iptr = f1;
23 a = iptr;
24 a = (YYSTYPE)iptr;