[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGenObjC / debug-info-property2.m
blob7e0a5e9f954bacb15e8e7fd68e10c5cb057b5405
1 // FIXME: Check IR rather than asm, then triple is not needed.
2 // RUN: %clang_cc1 -triple %itanium_abi_triple -S -debug-info-kind=limited %s -o - | FileCheck %s
4 // CHECK: AT_APPLE_property_name
5 @interface C {
6   int _base;
8 @property int base;
9 @end
11 @implementation C
12 @synthesize base = _base;
13 @end
15 void foo(C *cptr) {}