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

     1  int foo (int b, int c)
     2  {
     3    int x;
     4    if (b)
     5      return x & c;
     6    else
     7      return 1;
     8  }
     9  extern void abort (void);
    10  int main()
    11  {
    12    if (foo(1, 0) != 0)
    13      abort ();
    14    return 0;
    15  }
    16