From 6af41328be9a8328f993cde20eeea7174e665d2b Mon Sep 17 00:00:00 2001 From: Argyrios Kyrtzidis Date: Wed, 5 Jun 2013 17:52:24 +0000 Subject: When the template specialization header is missing, set a valid source location for the template keyword when recovering. Otherwise ClassTemplateSpecializationDecl::getSourceRange() will mistakenly consider itself as an implicit partial specialization and lead to a crash. Fixes rdar://14063074 llvm-svn: 183325 --- clang/test/Index/index-file.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'clang/test/Index/index-file.cpp') diff --git a/clang/test/Index/index-file.cpp b/clang/test/Index/index-file.cpp index 7634c0db863..37b14a2715a 100644 --- a/clang/test/Index/index-file.cpp +++ b/clang/test/Index/index-file.cpp @@ -4,7 +4,20 @@ extern "C" { template < typename T > *Allocate() { } } +// rdar://14063074 +namespace rdar14063074 { +template +struct TS {}; +struct TS {}; + +template +void tfoo() {} +void tfoo() {} +} + // 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 -- cgit v1.2.3