No error messages when headers are included in ifdef
Opened this issue · 0 comments
mayshukla commented
VarClang produces no error for the following test program:
#ifdef A
#include <iostream>
#endif
int main() {
std::cout << "hi";
}
It should mention that std::cout
is not defined in context ~A