xref: /aosp_15_r20/external/clang/test/Modules/Inputs/merge-template-members/c.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li namespace N {
2*67e74705SXin Li   template <typename> struct A {
3*67e74705SXin Li     int n;
AA4*67e74705SXin Li     A() : n() {}
5*67e74705SXin Li   };
6*67e74705SXin Li 
7*67e74705SXin Li   // Trigger instantiation of definition of A<int>.
8*67e74705SXin Li   struct C {
9*67e74705SXin Li     A<int> a;
10*67e74705SXin Li   };
11*67e74705SXin Li }
12*67e74705SXin Li 
13*67e74705SXin Li // Merge in another declaration and update records.
14*67e74705SXin Li #include "b1.h"
15