blob: f588a9983718ed67c16d7cc11ac4c7d09b8447f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// 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
// <rdar://12316296> 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
|