1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-20 14:29:27 +00:00
llvm-6502/test/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>();
}