blob: 21f0127ab489826d1c17834e715f8058d5300518 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
Eli Friedman6bc20132009-12-08 05:40:03 +00002
3template<typename T> void a(T);
4template<> void a(int) {}
5
6// CHECK: define void @_Z1aIiEvT_
7
8namespace X {
9template<typename T> void b(T);
10template<> void b(int) {}
11}
12
13// CHECK: define void @_ZN1X1bIiEEvT_