blob: 64a1d8cbc84d6f85303eb795e717497cc54a0ede [file] [log] [blame]
// RUN: %clang_cc1 %s -emit-llvm -triple x86_64-apple-darwin -o - | FileCheck %s
// rdar://11323676
@interface NSDictionary @end
@interface NSMutableDictionary : NSDictionary@end@interface CalDAVAddManagedAttachmentsTaskGroup {
NSMutableDictionary *_filenamesToServerLocation;
}
- (NSDictionary *)filenamesToServerLocation;
@property (readwrite, retain) NSMutableDictionary *filenamesToServerLocation;
@end
@implementation CalDAVAddManagedAttachmentsTaskGroup
@synthesize filenamesToServerLocation=_filenamesToServerLocation;
@end
// CHECK: [[CALL:%.*]] = tail call ptr @objc_getProperty
// CHECK: ret ptr [[CALL:%.*]]