xref: /aosp_15_r20/external/clang/test/Modules/Inputs/merge-template-members/a2.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 namespace N {
2   template <typename> struct A {
3     int n;
AA4     A() : n() {}
5   };
6 
7   // Create declaration of A<int>.
8   typedef A<int> AI;
9 }
10