xref: /llvm-project/clang/test/Modules/Inputs/merge-template-members/a1.h (revision 7483d20e77eaf51a77a2105bbdbf1fec8e16e680)
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