xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/2003-11-02-WeakLinkage.cpp (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1 // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2 // The template should compile to linkonce linkage, not weak linkage.
3 
4 // CHECK-NOT: weak
5 template<class T>
6 void thefunc();
7 
8 template<class T>
9 inline void thefunc() {}
10 
11 void test() {
12   thefunc<int>();
13 }
14