Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
d3d086d6794e901bde43b1c1a374a4b1d571d7e7
/
.
/
llvm
/
test
/
Regression
/
C++Frontend
/
2003-11-02-WeakLinkage.cpp.tr
blob: 4671b40a9e5f110c1c8d2bbac147b84098cb082d [
file
] [
log
] [
blame
]
Chris Lattner
1f30e93
2003-11-02 06:30:39 +0000
[
diff
] [
blame
]
1
// RUN: %llvmgcc -xc++ -S -o - %s | not grep weak
2
3
template
<
class
T
>
4
void
thefunc
();
5
6
template
<
class
T
>
7
inline
void
thefunc
()
{}
8
9
void
test
()
{
10
thefunc
<int>
();
11
}
12