3 // RUN: c-index-test -test-load-source all -comments-xml-schema=%S/../../bindings/xml/comment-xml-schema.rng -target x86_64-apple-darwin10 -fobjc-arc %s > %t/out
4 // RUN: FileCheck %s < %t/out
9 @interface NSArray @end
11 @interface NSMutableArray : NSArray
16 //! This is WithLabel comment.
17 - (NSString *)WithLabel:(NSString * const)label;
18 // CHECK: <Declaration>- (NSString *)WithLabel:(NSString *const)label;</Declaration>
20 //! This is a property to get the Name.
21 @property (copy) NSString *Name;
22 // CHECK: <Declaration>@property(atomic, copy, readwrite) NSString *Name;</Declaration>
25 @implementation NSMutableArray
27 //! This is private ivar
29 // CHECK: <Declaration>NSString *NickName</Declaration>
32 - (NSString *)WithLabel:(NSString * const)label {
35 @synthesize Name = Name;