David Blaikie e50bd2b21c Reduce the PR20399 test case.
I couldn't get something /really/ obvious, and I imagine Richard Smith
might be able to provide some text explaining the sequence of steps
that's demonstrated by these files - but at least it's a bit simpler
now.

llvm-svn: 218840
2014-10-01 23:16:30 +00:00

15 lines
264 B
C++

#ifndef FIRSTHEADER
#define FIRSTHEADER
#include "SecondHeader.h" // Just a class which gets in the lazy deserialization chain
#include "stl_map.h"
#include "vector"
typedef std::map<int>::iterator el;
inline void func() {
std::vector<int>::func();
}
#endif