Integrating a library and using interrogate

For the record, I just tried to interrogate the following code:

#define TEST1 0
#define TEST2 0
#if TEST1 == TEST2
#error 1
#else
#error 2
#endif

and it aborts with error “1”. If I comment out #error 1, it parses without error.

David