xref: /llvm-project/clang-tools-extra/test/modularize/Inputs/HeaderGuardSubSub.h (revision 428ad10623dc1730eb113743c0f727ec41064a3b)
1*428ad106SJohn Thompson #ifndef _HEADERGUARDSUBSUB_H_
2*428ad106SJohn Thompson #define _HEADERGUARDSUBSUB_H_
3*428ad106SJohn Thompson 
4*428ad106SJohn Thompson #define SOMETHING 1
5*428ad106SJohn Thompson 
6*428ad106SJohn Thompson // Nest include.  Header guard should not confuse modularize.
7*428ad106SJohn Thompson #include "HeaderGuard.h"
8*428ad106SJohn Thompson 
9*428ad106SJohn Thompson #endif // _HEADERGUARDSUBSUB_H_
10