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
8 @interface NSArray @end
10 @interface NSMutableArray : NSArray
15 //! This is WithLabel comment.
16 - (NSString *)WithLabel:(NSString * const)label;
17 // CHECK: <Declaration>- (NSString *)WithLabel:(NSString *const)label;</Declaration>
19 //! This is a property to get the Name.
20 @property (copy) NSString *Name;
21 // CHECK: <Declaration>@property(atomic, copy, readwrite) NSString *Name;</Declaration>
24 @implementation NSMutableArray
26 //! This is private ivar
28 // CHECK: <Declaration>NSString *NickName</Declaration>
31 - (NSString *)WithLabel:(NSString * const)label {
34 @synthesize Name = Name;