Files
codeql/cpp/ql/test/library-tests/headers/preprocBlock/preprocblock.cpp
2024-01-30 16:47:35 +00:00

25 lines
279 B
C++

// preprocblock.cpp
#include "header.h"
#define GREEN
#ifdef RED
#elif defined GREEN
#include "header.h"
#ifndef BLUE
#include "header.h"
#endif
#if 0
#include "header.h" // not reached
#else
#include "header.h"
#endif
#include "header.h"
#else
// ...
#endif