Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
090516fe932ad4ed14b72ea27017aeb4a15cb15c
/
.
/
llvm
/
test
/
Regression
/
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>
();
}