(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr40172-2.c
       1  /* PR middle-end/40172 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-Wall -W -Werror" } */
       4  
       5  extern int xxx;
       6  
       7  #define XXX xxx
       8  
       9  int
      10  test (void)
      11  {
      12    if (!XXX && xxx)
      13      return 4;
      14    else
      15      return 0;
      16  }