android_mt6572_jiabo/external/clang/test/Modules/Inputs/merge-template-members/a1.h
2025-09-05 16:56:03 +08:00

9 lines
139 B
C++

namespace N {
template <typename> struct A {
int n;
A() : n() {}
};
// Create declaration of A<int>.
typedef A<int> AI;
}