llvm-6502/test/C++Frontend/2003-11-02-WeakLinkage.cpp.tr
Reid Spencer 5fc73d9ac8 Remove a double negative.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33563 91177308-0d34-0410-b5e6-96231b3b80d8
2007-01-27 00:16:07 +00:00

13 lines
161 B
Plaintext

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