modernc.org/cc@v1.0.1/v2/testdata/cpp-expand/011.c (about)

     1  #if 0 != (0 && (0/0))
     2     FAIL
     3  #endif
     4  
     5  #if 1 != (-1 || (0/0))
     6     FAIL
     7  #endif
     8  
     9  #if 3 != (-1 ? 3 : (0/0))
    10     FAIL
    11  #endif
    12  
    13  int
    14  main()
    15  {
    16  	return 0;
    17  }