1// RUN: %llvmgcc %s -S -g -o - | grep -v DW_TAG_member 2// Interface P should not be a member of interface I in debug info. 3@interface P 4@end 5 6@interface I : P 7@end 8 9void fn(I *iptr) {} 10