Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / PR20399 / FirstHeader.h
blob43adf3d847ed5a76a60cfccc66e0fca02322af0d
1 #ifndef FIRSTHEADER
2 #define FIRSTHEADER
4 #include "SecondHeader.h" // Just a class which gets in the lazy deserialization chain
6 #include "stl_map.h"
7 #include "vector"
8 typedef std::map<int>::iterator el;
10 inline void func() {
11 std::vector<int>::func();
14 #endif