Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
31f841bc4853f086d4d537848623c4f8d10366e6
/
.
/
test
/
C++Frontend
/
2003-11-02-WeakLinkage.cpp.tr
blob: 4671b40a9e5f110c1c8d2bbac147b84098cb082d [
file
] [
log
] [
blame
]
Chris Lattner
766be1d
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