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

     1  f (const int x)
     2  {
     3    int y = 0;
     4    y = x ? y : -y;
     5    {
     6      const int *p = &x;
     7    }
     8    return y;
     9  }
    10  
    11  main ()
    12  {
    13    if (f (0))
    14      abort ();
    15    exit (0);
    16  }