• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2 
3 template<typename T> void a(T);
a(int)4 template<> void a(int) {}
5 
6 // CHECK: define void @_Z1aIiEvT_
7 
8 namespace X {
9 template<typename T> void b(T);
b(int)10 template<> void b(int) {}
11 }
12 
13 // CHECK: define void @_ZN1X1bIiEEvT_
14