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 Sambucinline void func() { 11*0a6a1f1dSLionel Sambuc std::vector<int>::func(); 12*0a6a1f1dSLionel Sambuc } 13*0a6a1f1dSLionel Sambuc 14*0a6a1f1dSLionel Sambuc #endif 15