Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
fe386c4759cce2ea3eb2e664f27ee391b8acb37b
/
.
/
test
/
C++Frontend
/
2003-11-02-WeakLinkage.cpp.tr
blob: 4671b40a9e5f110c1c8d2bbac147b84098cb082d [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -xc++ -S -o - %s | not grep weak
template
<
class
T
>
void
thefunc
();
template
<
class
T
>
inline
void
thefunc
()
{}
void
test
()
{
thefunc
<int>
();
}