1/* Test call to static variable.  */
2
3typedef struct
4{
5  long long a[10];
6} A;
7
8void bar (A *);
9
10typedef int (*B)(int);
11
12void foo (void)
13{
14  static A a;
15  bar (&a);
16  (*(B)&a) (1);
17}
18