blob: c3bd8b9b8782d28c8c02cae9d264dad652d7c166 [file] [log] [blame]
// RUN: c-index-test -write-pch %t.h.pch %s
// RUN: c-index-test -code-completion-at=%s:19:1 %s -include %t.h | FileCheck %s
// clang Code Completion returns nothing but preprocessor macros
#ifndef HEADER
#define HEADER
@interface I
@end
// CHECK: FunctionDecl:{ResultType void}{TypedText foo}
void foo();
#else
@implementation I
-(void)meth {
}
@end
#endif