rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20020129-1.c

18 lines
189 B
C

/* Test call to static variable. */
typedef struct
{
long long a[10];
} A;
void bar (A *);
typedef int (*B)(int);
void foo (void)
{
static A a;
bar (&a);
(*(B)&a) (1);
}