11 lines · plain
1// RUN: %clang_cc1 -emit-llvm %s -debug-info-kind=limited -o - | FileCheck %s2// CHECK-NOT: DW_TAG_member3// Interface P should not be a member of interface I in debug info.4@interface P 5@end6 7@interface I : P 8@end9 10void fn(I *iptr) {}11