xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/pr15753.cpp (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1 // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2 
3 template <typename T> static int Foo(T t);
4 template <typename T>
5 int Foo(T t) {
6   return t;
7 }
8 template<> int Foo<int>(int i) {
9   return i;
10 }
11 
12 // CHECK-NOT: define
13