blob: 7d31b30cce5ff6e14b5c34a9b4365e58cd99b1aa [file] [log] [blame]
Eric Christopher89a179b2011-08-20 01:04:49 +00001// RUN: %clang_cc1 -emit-llvm %s -g -o - | FileCheck %s
2// CHECK-NOT: DW_TAG_member
3// Interface P should not be a member of interface I in debug info.
4@interface P
5@end
6
7@interface I : P
8@end
9
10void fn(I *iptr) {}