llvm/clang-tools-extra/test/clang-tidy/checkers/readability/redundant-preprocessor.h

#ifndef FOO
#ifndef FOO // this would warn, but not in a header
void f();
#endif
#endif