1 // RUN: %clang_cc1 %s -emit-llvm -triple x86_64-apple-darwin -o - | FileCheck %s
3 @interface NSDictionary @end
4 @interface NSMutableDictionary : NSDictionary@end@interface CalDAVAddManagedAttachmentsTaskGroup {
5 NSMutableDictionary *_filenamesToServerLocation;
7 - (NSDictionary *)filenamesToServerLocation;
8 @property (readwrite, retain) NSMutableDictionary *filenamesToServerLocation;
11 @implementation CalDAVAddManagedAttachmentsTaskGroup
12 @synthesize filenamesToServerLocation=_filenamesToServerLocation;
15 // CHECK: [[CALL:%.*]] = tail call ptr @objc_getProperty
16 // CHECK: ret ptr [[CALL:%.*]]