blob: 405b33f56a99972e708febd72c8740ff6b2b48dc [file] [log] [blame]
/* APPLE LOCAL file radar 4477797 */
/* { dg-options "-gdwarf-2 -dA" } */
/* { dg-final { scan-assembler "\"Object\\\\0\".*DW_AT_name" } } */
/* { dg-final { scan-assembler "\"MyObject\\\\0\".*DW_AT_name.*DW_TAG_inheritance" } } */
#include <objc/objc.h>
/* APPLE LOCAL radar 4894756 */
#include "../objc/execute/Object2.h"
@interface MyObject : Object {
int myData;
}
@end
@implementation MyObject @end
int main()
{
MyObject *obj = [[MyObject alloc] init];
}