[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGenObjC / debug-info-selector.m
blob9946f3d0ff4269717fbf0be1ba44499cfaa6f266
1 // RUN: %clang_cc1 -emit-llvm  -debug-info-kind=limited %s -o - | FileCheck %s
3 // CHECK: objc_selector
4 @interface MyClass {
6 - (id)init;
7 @end
9 @implementation MyClass
10 - (id) init
12   return self;
14 @end