xref: /aosp_15_r20/external/clang/test/Modules/Inputs/merge-template-members/a2.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   // Create declaration of A<int>.
8*67e74705SXin Li   typedef A<int> AI;
9*67e74705SXin Li }
10