llvm-for-llvmta/tools/clang/test/Preprocessor/Inputs/cycle/a.h
Nils Hölscher 7f403f4f1e added clang
2022-04-25 13:02:35 +02:00

9 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"