1@interface A 2@property (strong, nonatomic) id property; 3@property (nonatomic, weak) id second_property; 4@property (unsafe_unretained, nonatomic) id third_property; 5@end 6 7// RUN: c-index-test -test-annotate-tokens=%s:1:1:5:1 %s -fobjc-arc -fobjc-nonfragile-abi | FileCheck %s 8// CHECK: Punctuation: "@" [1:1 - 1:2] ObjCInterfaceDecl=A:1:12 9// CHECK: Keyword: "interface" [1:2 - 1:11] ObjCInterfaceDecl=A:1:12 10// CHECK: Identifier: "A" [1:12 - 1:13] ObjCInterfaceDecl=A:1:12 11// CHECK: Punctuation: "@" [2:1 - 2:2] ObjCPropertyDecl=property:2:34 12// CHECK: Keyword: "property" [2:2 - 2:10] ObjCPropertyDecl=property:2:34 13// CHECK: Punctuation: "(" [2:11 - 2:12] ObjCPropertyDecl=property:2:34 14// CHECK: Keyword: "strong" [2:12 - 2:18] ObjCPropertyDecl=property:2:34 15// CHECK: Punctuation: "," [2:18 - 2:19] ObjCPropertyDecl=property:2:34 16// CHECK: Keyword: "nonatomic" [2:20 - 2:29] ObjCPropertyDecl=property:2:34 17// CHECK: Punctuation: ")" [2:29 - 2:30] ObjCPropertyDecl=property:2:34 18// CHECK: Identifier: "id" [2:31 - 2:33] TypeRef=id:0:0 19// CHECK: Identifier: "property" [2:34 - 2:42] ObjCPropertyDecl=property:2:34 20// CHECK: Punctuation: ";" [2:42 - 2:43] ObjCInterfaceDecl=A:1:12 21// CHECK: Punctuation: "@" [3:1 - 3:2] ObjCPropertyDecl=second_property:3:32 22// CHECK: Keyword: "property" [3:2 - 3:10] ObjCPropertyDecl=second_property:3:32 23// CHECK: Punctuation: "(" [3:11 - 3:12] ObjCPropertyDecl=second_property:3:32 24// CHECK: Keyword: "nonatomic" [3:12 - 3:21] ObjCPropertyDecl=second_property:3:32 25// CHECK: Punctuation: "," [3:21 - 3:22] ObjCPropertyDecl=second_property:3:32 26// CHECK: Keyword: "weak" [3:23 - 3:27] ObjCPropertyDecl=second_property:3:32 27// CHECK: Punctuation: ")" [3:27 - 3:28] ObjCPropertyDecl=second_property:3:32 28// CHECK: Identifier: "id" [3:29 - 3:31] TypeRef=id:0:0 29// CHECK: Identifier: "second_property" [3:32 - 3:47] ObjCPropertyDecl=second_property:3:32 30// CHECK: Punctuation: "@" [4:1 - 4:2] ObjCPropertyDecl=third_property:4:45 31// CHECK: Keyword: "property" [4:2 - 4:10] ObjCPropertyDecl=third_property:4:45 32// CHECK: Punctuation: "(" [4:11 - 4:12] ObjCPropertyDecl=third_property:4:45 33// CHECK: Keyword: "unsafe_unretained" [4:12 - 4:29] ObjCPropertyDecl=third_property:4:45 34// CHECK: Punctuation: "," [4:29 - 4:30] ObjCPropertyDecl=third_property:4:45 35// CHECK: Keyword: "nonatomic" [4:31 - 4:40] ObjCPropertyDecl=third_property:4:45 36// CHECK: Punctuation: ")" [4:40 - 4:41] ObjCPropertyDecl=third_property:4:45 37// CHECK: Identifier: "id" [4:42 - 4:44] TypeRef=id:0:0 38// CHECK: Identifier: "third_property" [4:45 - 4:59] ObjCPropertyDecl=third_property:4:45 39