Sign in
rust
/
rust-lang
/
llvm-project
/
8265e390e740f0fb7464f7c20bd38d55ee145dd4
/
.
/
clang
/
test
/
Preprocessor
/
Inputs
/
cycle
/
a.h
blob: dd3ef35d61fc3095b13d7878864961e9db555c35 [
file
] [
log
] [
blame
]
// 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"