bolt/deps/llvm-18.1.8/clang/test/Preprocessor/Inputs/cycle/a.h
2025-02-14 19:21:04 +01:00

8 lines
226 B
C

// Presence of 2 inclusion cycles
// b.h -> a.h -> b.h -> ...
// c.h -> a.h -> c.h -> ...
// makes it unfeasible to reach max inclusion depth in all possible ways. Need
// to stop earlier.
#include "b.h"
#include "c.h"