blob: b82345f9c685e922c285b851e148a36d342a49e4 [file] [log] [blame]
Argyrios Kyrtzidis6e5fa8c2012-05-25 20:05:57 +00001
2@class Protocol;
3
4@protocol Prot
5@end
6
7struct FooS {
8 int x;
9};
10
11void foo() {
12 Protocol *p = @protocol(Prot);
13 @encode(struct FooS);
14}
15
16// RUN: c-index-test -index-file %s | FileCheck %s
17// CHECK: [indexEntityReference]: kind: objc-protocol | name: Prot | {{.*}} | loc: 12:27
18// CHECK: [indexEntityReference]: kind: struct | name: FooS | {{.*}} | loc: 13:18