xref: /aosp_15_r20/external/clang/test/CodeGenObjC/2010-02-23-DbgInheritance.m (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li// RUN: %clang_cc1 -emit-llvm %s -debug-info-kind=limited -o - | FileCheck %s
2*67e74705SXin Li// CHECK-NOT: DW_TAG_member
3*67e74705SXin Li// Interface P should not be a member of interface I in debug info.
4*67e74705SXin Li@interface P
5*67e74705SXin Li@end
6*67e74705SXin Li
7*67e74705SXin Li@interface I : P
8*67e74705SXin Li@end
9*67e74705SXin Li
10*67e74705SXin Livoid fn(I *iptr) {}
11