Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
81fe1fbf4abd00b24e078a80cb15a2d2c1343f11
/
.
/
clang
/
test
/
Modules
/
Inputs
/
merge-template-members
/
c.h
blob: 92f20a0b132992ec8fb05cef1bfaf16d901efb4d [
file
] [
log
] [
blame
]
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"