End Google Ads 201810 - BS.net 01 --> Once there are 2 defines ONE and TWO available I'd like to test defenition of the both of them to compile the code.

The below presented code does not allow to include the code between #if and #endif lines.


#define ONE
#define TWO

//...

#if defined ONE && TWO
//compile that code if both ONE and TWO defined, does not work right now
#endif

//...





????????