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

     1  long long
     2  mod (a, b)
     3       long long a, b;
     4  {
     5    return a % b;
     6  }
     7  
     8  int
     9  main ()
    10  {
    11    mod (1LL, 2LL);
    12    exit (0);
    13  }