1 // RUN: %clang_cc1 -fobjc-gc -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | FileCheck %s
16 @property D Property1;
18 - (void) set : (D) d1;
22 @synthesize Property1;
23 - (D) val { return Property1; }
24 - (void) set : (D) d1 { Property1 = d1; }
26 // CHECK: {{call.*@objc_memmove_collectable}}
27 // CHECK: {{call.*@objc_memmove_collectable}}