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

     1  void big(long long u) { }
     2  
     3  void doit(unsigned int a,unsigned int b,char *id)
     4  {
     5    big(*id);
     6    big(a);
     7    big(b);
     8  }
     9  
    10  int main(void)
    11  {
    12    doit(1,1,"\n");
    13    return 0;
    14  }