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