llvm-for-llvmta/tools/clang/test/Modules/Inputs/merge-template-members/a2.h

10 lines
139 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
namespace N {
template <typename> struct A {
int n;
A() : n() {}
};
// Create declaration of A<int>.
typedef A<int> AI;
}