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

     1  void foo (int *a) {}
     2  
     3  int main ()
     4  {
     5    int a;
     6    if (&a == 0)
     7      abort ();
     8    else
     9      {
    10        foo (&a);
    11        exit (0);
    12      }
    13  }