Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
039ba763d1da901bcd1ef0020a2aa97704c7962a
/
.
/
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>
();
}