diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2015-09-11 01:44:56 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2015-09-11 01:44:56 +0000 |
commit | 322d853d7d3e13a102d3a96bf9c8b813d78bffc5 (patch) | |
tree | a988003e5cab80ae8954d1959a1672b5d880c98e /clang/test/Index/index-file.cpp | |
parent | adc5456da09f77a0e094b06f41483adb1925d991 (diff) | |
download | bcm5719-llvm-322d853d7d3e13a102d3a96bf9c8b813d78bffc5.tar.gz bcm5719-llvm-322d853d7d3e13a102d3a96bf9c8b813d78bffc5.zip |
[sema] Fix assertion hit when using libclang to index a particular C++ snippet involving templates.
Assertion hit was in ClassTemplateSpecializationDecl::getSourceRange().
llvm-svn: 247373
Diffstat (limited to 'clang/test/Index/index-file.cpp')
-rw-r--r-- | clang/test/Index/index-file.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/test/Index/index-file.cpp b/clang/test/Index/index-file.cpp index 37b14a2715a..d42b4b2de7d 100644 --- a/clang/test/Index/index-file.cpp +++ b/clang/test/Index/index-file.cpp @@ -15,9 +15,19 @@ void tfoo() {} void tfoo<int>() {} } +namespace crash1 { +template<typename T> class A { + A(A &) = delete; + void meth(); +}; +template <> void A<int>::meth(); +template class A<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 +// CHECK: [indexDeclaration]: kind: c++-instance-method | name: meth | {{.*}} | loc: 23:26 |