Yet another test for explicit specialization, this one involving linkage

llvm-svn: 83901
This commit is contained in:
Douglas Gregor 2009-10-12 21:21:22 +00:00
parent 1d116976b4
commit a2fe1fe208
1 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,42 @@
// RUN: clang-cc -emit-llvm -o - %s | FileCheck %s
template<class T> void f(T) { /* ... */ }
template<class T> inline void g(T) { /* ... */ }
// CHECK: define void @_Z1gIiEvT_
template<> void g<>(int) { /* ... */ }
template<class T>
struct X {
void f() { }
void g();
void h();
};
template<class T>
void X<T>::g() {
}
template<class T>
inline void X<T>::h() {
}
// CHECK: define void @_ZN1XIiE1fEv
template<> void X<int>::f() { }
// CHECK: define void @_ZN1XIiE1hEv
template<> void X<int>::h() { }
// CHECK: define linkonce_odr void @_Z1fIiEvT_
template<> inline void f<>(int) { /* ... */ }
// CHECK: define linkonce_odr void @_ZN1XIiE1gEv
template<> inline void X<int>::g() { }
void test(X<int> xi) {
f(17);
g(17);
xi.f();
xi.g();
xi.h();
}