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

     1  extern void abort (void);
     2  
     3  static void something();
     4  
     5  int main()
     6  {
     7    something(-1);
     8    return 0;
     9  }
    10  
    11  static void something(int i)
    12  {
    13    if (i != -1)
    14      abort ();
    15  }