xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/PR20399/FirstHeader.h (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc #ifndef FIRSTHEADER
2*0a6a1f1dSLionel Sambuc #define FIRSTHEADER
3*0a6a1f1dSLionel Sambuc 
4*0a6a1f1dSLionel Sambuc #include "SecondHeader.h" // Just a class which gets in the lazy deserialization chain
5*0a6a1f1dSLionel Sambuc 
6*0a6a1f1dSLionel Sambuc #include "stl_map.h"
7*0a6a1f1dSLionel Sambuc #include "vector"
8*0a6a1f1dSLionel Sambuc typedef std::map<int>::iterator el;
9*0a6a1f1dSLionel Sambuc 
func()10*0a6a1f1dSLionel Sambuc inline void func() {
11*0a6a1f1dSLionel Sambuc   std::vector<int>::func();
12*0a6a1f1dSLionel Sambuc }
13*0a6a1f1dSLionel Sambuc 
14*0a6a1f1dSLionel Sambuc #endif
15