minix/external/bsd/llvm/dist/clang/test/Index/index-refs.m
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

27 lines
511 B
Objective-C

@class Protocol;
@protocol Prot
@end
struct FooS {
int x;
};
void foo() {
Protocol *p = @protocol(Prot);
@encode(struct FooS);
}
@interface I
+(void)clsMeth;
@end
void foo2() {
[I clsMeth];
}
// RUN: c-index-test -index-file %s | FileCheck %s
// CHECK: [indexEntityReference]: kind: objc-protocol | name: Prot | {{.*}} | loc: 12:27
// CHECK: [indexEntityReference]: kind: struct | name: FooS | {{.*}} | loc: 13:18
// CHECK: [indexEntityReference]: kind: objc-class | name: I | {{.*}} | loc: 21:4