Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
69993392d2e9e0560a184e65bdbe64527de3046f
/
.
/
test
/
CodeGenCXX
/
debug-info-template.cpp
blob: 233090c04992610900e2eb9608fd9a5a4461cff3 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm-only -g -S %s -o - | grep "TC<int>"
template
<
typename
T
>
class
TC
{
public
:
TC
(
const
TC
&)
{}
TC
()
{}
};
TC
<int>
tci
;