Files
codeql/cpp/ql/test/library-tests/headers/preprocBlock/preprocblock23.cpp
2025-01-21 18:02:28 +01:00

23 lines
281 B
C++

// preprocblock23.cpp
// semmle-extractor-options: -std=c++23
#include "header.h"
#define GREEN
#ifdef RED
#elifdef GREEN
#include "header.h"
#if 0
#include "header.h" // not reached
#elifndef BLUE
#include "header.h"
#endif
#include "header.h"
#else
// ...
#endif