[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCXX / function-template-explicit-specialization.cpp
blobed6cf84c2be56a9aa8842d4677345f5af5bcc2b4
1 // RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple %s -o - | FileCheck %s
3 template<typename T> void a(T);
4 template<> void a(int) {}
6 // CHECK-LABEL: define {{.*}}void @_Z1aIiEvT_
8 namespace X {
9 template<typename T> void b(T);
10 template<> void b(int) {}
13 // CHECK-LABEL: define {{.*}}void @_ZN1X1bIiEEvT_