allwinner_a64/android/external/clang/test/Modules/Inputs/merge-template-members/a2.h
2018-08-08 16:14:42 +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;
}