diff options
author | dim <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
commit | 952eddef9aff85b1e92626e89baaf7a360e2ac85 (patch) | |
tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /test/Index/index-file.cpp | |
parent | ea266cad53e3d49771fa38103913d3ec7a166694 (diff) | |
download | FreeBSD-src-952eddef9aff85b1e92626e89baaf7a360e2ac85.zip FreeBSD-src-952eddef9aff85b1e92626e89baaf7a360e2ac85.tar.gz |
Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3):
https://llvm.org/svn/llvm-project/cfe/branches/release_34@197841
Diffstat (limited to 'test/Index/index-file.cpp')
-rw-r--r-- | test/Index/index-file.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Index/index-file.cpp b/test/Index/index-file.cpp index 7634c0d..37b14a2 100644 --- a/test/Index/index-file.cpp +++ b/test/Index/index-file.cpp @@ -4,7 +4,20 @@ extern "C" { template < typename T > *Allocate() { } } +// rdar://14063074 +namespace rdar14063074 { +template <typename T> +struct TS {}; +struct TS<int> {}; + +template <typename T> +void tfoo() {} +void tfoo<int>() {} +} + // RUN: c-index-test -index-file %s > %t // RUN: FileCheck %s -input-file=%t // CHECK: [indexDeclaration]: kind: type-alias | name: MyTypeAlias | {{.*}} | loc: 1:7 +// CHECK: [indexDeclaration]: kind: struct-template-spec | name: TS | {{.*}} | loc: 11:8 +// CHECK: [indexDeclaration]: kind: function-template-spec | name: tfoo | {{.*}} | loc: 15:6 |