modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/20020129-1.c (about)

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