[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGenObjC / property-agrr-getter.m
blob823dd468b70d63d3968c6fa7b92cac85d2d49e90
1 // RUN: %clang_cc1 -emit-llvm-only %s
3 typedef struct {
4   unsigned f0;
5 } s0;
7 @interface A
8 - (s0) f0;
9 @end
11 @implementation A
12 -(s0) f0{ while (1) {} }
13 - (unsigned) bar {
14   return self.f0.f0;
16 @end
19 typedef struct _NSSize {
20     float width;
21     float height;
22 } NSSize;
25 @interface AnObject
27  NSSize size;
30 @property NSSize size;
32 @end
34 float f (void)
36   AnObject* obj;
37   return (obj.size).width;
40 void test3(AnObject *obj) {
41   obj.size;
42   (void) obj.size;