diff options
author | Alex Lorenz <arphaman@gmail.com> | 2017-07-12 11:34:14 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2017-07-12 11:34:14 +0000 |
commit | 4fabc97c432a43f0c8efc0b307ca9741b016a66c (patch) | |
tree | e7a430483d8f998b172f64e21cdbea56b1512364 /clang/test/Index | |
parent | 571b8cfac94bf030c8db74dc24e28301480ecb96 (diff) | |
download | bcm5719-llvm-4fabc97c432a43f0c8efc0b307ca9741b016a66c.tar.gz bcm5719-llvm-4fabc97c432a43f0c8efc0b307ca9741b016a66c.zip |
Revert r307769 (Forgot to mention the name of the contributor).
llvm-svn: 307770
Diffstat (limited to 'clang/test/Index')
-rw-r--r-- | clang/test/Index/print-type-declaration.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/clang/test/Index/print-type-declaration.cpp b/clang/test/Index/print-type-declaration.cpp index a0953d1e563..31c0a73fcd0 100644 --- a/clang/test/Index/print-type-declaration.cpp +++ b/clang/test/Index/print-type-declaration.cpp @@ -7,13 +7,6 @@ int main() auto b = a; } -enum RegularEnum {}; - -enum class ScopedEnum {}; - // RUN: c-index-test -test-print-type-declaration -std=c++11 %s | FileCheck %s // CHECK: VarDecl=a:6:8 (Definition) [typedeclaration=Test] [typekind=Record] // CHECK: VarDecl=b:7:8 (Definition) [typedeclaration=Test] [typekind=Record] -// CHECK: EnumDecl=RegularEnum:10:6 (Definition) [typedeclaration=RegularEnum] [typekind=Enum] -// CHECK: EnumDecl=ScopedEnum:12:12 (Definition) (scoped) [typedeclaration=ScopedEnum] [typekind=Enum] - |