diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-09-01 19:08:08 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-09-01 19:08:08 +0000 |
commit | b0b336ebe95b73038e7fdb00677209253edc4be5 (patch) | |
tree | d636587deba1e777a2fb7792d20b3baa334afb23 /clang/test/Index/index-file.cpp | |
parent | da188de2b69f6125d04e8ba8851cd9519ec457c9 (diff) | |
download | bcm5719-llvm-b0b336ebe95b73038e7fdb00677209253edc4be5.tar.gz bcm5719-llvm-b0b336ebe95b73038e7fdb00677209253edc4be5.zip |
[libclang] Fix indexing type alias declarations. rdar://11878406
llvm-svn: 163072
Diffstat (limited to 'clang/test/Index/index-file.cpp')
-rw-r--r-- | clang/test/Index/index-file.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/Index/index-file.cpp b/clang/test/Index/index-file.cpp new file mode 100644 index 00000000000..bf2d62c5568 --- /dev/null +++ b/clang/test/Index/index-file.cpp @@ -0,0 +1,6 @@ +using MyTypeAlias = 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 |