(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
execute/
920604-1.c
       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  }