blob: fd2000be6e3a49556d2b99651767afb42aa4a1dd [file] [log] [blame]
Rafael Espindola459ef032013-04-16 02:29:15 +00001// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2
3template <typename T> static int Foo(T t);
4template <typename T>
5int Foo(T t) {
6 return t;
7}
8template<> int Foo<int>(int i) {
9 return i;
10}
11
12// CHECK-NOT: define