[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGenObjC / dot-syntax-2.m
blobc48c39cc9fb0132fe95ced2c6736b50386770fd0
1 // RUN: %clang_cc1 -emit-llvm -o %t %s
3 @interface NSDictionary @end
5 @interface NSMutableDictionary : NSDictionary
6 @end
8 @interface MutableMyClass 
9 - (NSMutableDictionary *)myDict;
10 - (void)setMyDict:(NSDictionary *)myDict;
12 - (NSMutableDictionary *)myLang;
13 - (void)setMyLang:(NSDictionary *)myLang;
14 @end
16 @interface AnotherClass @end
18 @implementation AnotherClass
19 - (void)foo
21     MutableMyClass * myObject;
22     NSDictionary * newDict;
23     myObject.myDict = newDict; 
24     myObject.myLang = newDict;
26 @end