libstdc++: Define __glibcxx_assert_fail for non-verbose build [PR115585]
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20020129-1.c
blobc14ac07655ed02738429bf75029db33c30a30f24
1 /* Test call to static variable. */
3 /* { dg-require-effective-target indirect_calls } */
5 typedef struct
7 long long a[10];
8 } A;
10 void bar (A *);
12 typedef int (*B)(int);
14 void foo (void)
16 static A a;
17 bar (&a);
18 (*(B)&a) (1);