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

     1  /* PR c/48742 */
     2  
     3  void baz (int);
     4  
     5  int
     6  foo (void)
     7  {
     8    return 1 / 0 > 0;
     9  }
    10  
    11  void
    12  bar (void)
    13  {
    14    baz (1 <= 2 % (3 >> 1 > 5 / 6 == 3));
    15  }