[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGenObjC / objc2-weak-ivar.m
blob0c8503ed2ee4aff626349b33ee4e4cc019f7748e
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
2 // RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
3 @class NSObject;
5 @interface Foo  {
6 @public
7   __weak NSObject *nsobject;
9 @end
11 @implementation Foo @end