1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/Regression/C++Frontend/2003-11-02-WeakLinkage.cpp.tr

13 lines
165 B
Plaintext

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