(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
overflow-2.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-std=c99 -pedantic-errors" } */
       3  
       4  /* PR c/24599 */
       5  
       6  int
       7  main (void)
       8  {
       9    if ((_Bool)(__INT_MAX__ + 1)) /* { dg-warning "overflow in expression" } */
      10      return 1;
      11    else
      12      return 0;
      13  }