mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
25 lines
279 B
C++
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 |