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

14 lines
236 B
C++

namespace N {
template <typename> struct A {
int n;
A() : n() {}
};
// Trigger instantiation of definition of A<int>.
struct C {
A<int> a;
};
}
// Merge in another declaration and update records.
#include "b1.h"