[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGenObjCXX / copyable-property-object.mm
blobb2ca85c4ca92cb199058c059a9566753b4fd282e
1 // RUN: %clang_cc1 -fobjc-gc -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | FileCheck %s
3 struct POD {
4   int array[3][4];
5   id objc_obj;
6 };
8 struct D  { 
9   POD pod_array[2][3];
12 @interface I
14   D Property1;
16 @property D Property1;
17 - (D) val;
18 - (void) set : (D) d1;
19 @end
21 @implementation I
22 @synthesize Property1;
23 - (D) val { return Property1; }
24 - (void) set : (D) d1 { Property1 = d1; }
25 @end
26 // CHECK: {{call.*@objc_memmove_collectable}}
27 // CHECK: {{call.*@objc_memmove_collectable}}