aboutsummaryrefslogtreecommitdiffstats
path: root/test/C++Frontend/2003-11-02-WeakLinkage.cpp.tr
blob: 4671b40a9e5f110c1c8d2bbac147b84098cb082d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %llvmgcc -xc++ -S -o - %s | not grep weak

template<class T>
void thefunc();

template<class T>
inline void thefunc() {}

void test() {
  thefunc<int>();
}