llvm-6502/test/C++Frontend/2003-11-02-WeakLinkage.cpp.tr
2006-11-05 23:27:36 +00:00

14 lines
177 B
Plaintext

// RUN: %llvmgcc -xc++ -S -o - %s | not grep weak
// XFAIL: *
template<class T>
void thefunc();
template<class T>
inline void thefunc() {}
void test() {
thefunc<int>();
}