Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
083128f6b13dfa4fc615a838c49b516d901b1ac0
/
.
/
test
/
CodeGenCXX
/
debug-info.cpp
blob: b89435a9904491e2ba108fad4d9f0ddec0cc2208 [
file
] [
log
] [
blame
]
// RUN: clang-cc -emit-llvm-only -g
template
<
typename
T
>
struct
Identity
{
typedef
T
Type
;
};
void
f
(
Identity
<int>
::
Type
a
)
{}
void
f
(
Identity
<int>
a
)
{}
void
f
(
int
&
a
)
{
}
template
<
typename
T
>
struct
A
{
A
<
T
>
*
next
;
};
void
f
(
A
<int>
)
{
}