Home | History | Annotate | Download | only in tests
      1 #define object 1
      2 #define function(x) 1
      3 
      4 #if object
      5 once
      6 #endif
      7 #if object
      8 twice
      9 #endif
     10 
     11 #if function(0)
     12 once
     13 #endif
     14 #if function(0)
     15 once again
     16 #endif
     17