bolt/deps/llvm-18.1.8/clang/test/Modules/Inputs/merge-template-members/c.h

15 lines
236 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
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"