blob: 02f9fc6e911de4ea88f010f4d9f6438f1f1412a2 (
about) (
plain)
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>();
}
|