xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/function-template-explicit-specialization.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2*f4a2713aSLionel Sambuc 
3*f4a2713aSLionel Sambuc template<typename T> void a(T);
4*f4a2713aSLionel Sambuc template<> void a(int) {}
5*f4a2713aSLionel Sambuc 
6*f4a2713aSLionel Sambuc // CHECK-LABEL: define void @_Z1aIiEvT_
7*f4a2713aSLionel Sambuc 
8*f4a2713aSLionel Sambuc namespace X {
9*f4a2713aSLionel Sambuc template<typename T> void b(T);
10*f4a2713aSLionel Sambuc template<> void b(int) {}
11*f4a2713aSLionel Sambuc }
12*f4a2713aSLionel Sambuc 
13*f4a2713aSLionel Sambuc // CHECK-LABEL: define void @_ZN1X1bIiEEvT_
14