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

template<class T>
void thefunc();

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

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