xref: /llvm-project/clang-tools-extra/test/modularize/Inputs/HeaderGuardSubSubDefined.h (revision 922734c661c355f194c0fe3d001c3601dac91335)
1*922734c6SJohn Thompson #if !defined(_HEADERGUARDSUBSUBDEFINED_H_)
2*922734c6SJohn Thompson #define _HEADERGUARDSUBSUBDEFINED_H_
3*922734c6SJohn Thompson 
4*922734c6SJohn Thompson #define SOMETHING_OTHER 1
5*922734c6SJohn Thompson 
6*922734c6SJohn Thompson // Nest include.  Header guard should not confuse modularize.
7*922734c6SJohn Thompson #include "HeaderGuard.h"
8*922734c6SJohn Thompson 
9*922734c6SJohn Thompson #endif // _HEADERGUARDSUBSUBDEFINED_H_
10