Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Index / rdar12316296-codecompletion.m
blobc3bd8b9b8782d28c8c02cae9d264dad652d7c166
1 // RUN: c-index-test -write-pch %t.h.pch %s
2 // RUN: c-index-test -code-completion-at=%s:19:1 %s -include %t.h | FileCheck %s
4 // clang Code Completion returns nothing but preprocessor macros
6 #ifndef HEADER
7 #define HEADER
9 @interface I
10 @end
12 // CHECK: FunctionDecl:{ResultType void}{TypedText foo}
13 void foo();
15 #else
17 @implementation I
18 -(void)meth {
21 @end
23 #endif