// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s template static int Foo(T t); template int Foo(T t) { return t; } template<> int Foo(int i) { return i; } // CHECK-NOT: define