Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / compile / 20020129-1.c
blob7b17ba475e488a1876a13edf400495c65784ed74
1 /* Test call to static variable. */
3 typedef struct
5 long long a[10];
6 } A;
8 void bar (A *);
10 typedef int (*B)(int);
12 void foo (void)
14 static A a;
15 bar (&a);
16 (*(B)&a) (1);