2003-11-02-WeakLinkage.cpp 256 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s // The template should compile to linkonce linkage, not weak linkage. // CHECK-NOT: weak template<class T> void thefunc(); template<class T> inline void thefunc() {} void test() { thefunc<int>(); }