Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / merge-template-members / c.h
blob92f20a0b132992ec8fb05cef1bfaf16d901efb4d
1 namespace N {
2 template <typename> struct A {
3 int n;
4 A() : n() {}
5 };
7 // Trigger instantiation of definition of A<int>.
8 struct C {
9 A<int> a;
13 // Merge in another declaration and update records.
14 #include "b1.h"