1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -g -S -emit-llvm %s -o - | FileCheck %s 2*f4a2713aSLionel Sambuc// CHECK: {{.*}} [ DW_TAG_structure_type ] [Circle] [line 11, 3*f4a2713aSLionel Sambuc@interface NSObject { 4*f4a2713aSLionel Sambuc struct objc_object *isa; 5*f4a2713aSLionel Sambuc} 6*f4a2713aSLionel Sambuc@end 7*f4a2713aSLionel Sambuc 8*f4a2713aSLionel Sambuc@interface Shape : NSObject 9*f4a2713aSLionel Sambuc 10*f4a2713aSLionel Sambuc@end 11*f4a2713aSLionel Sambuc@interface Circle : Shape 12*f4a2713aSLionel Sambuc 13*f4a2713aSLionel Sambuc@end 14*f4a2713aSLionel Sambuc@implementation Circle 15*f4a2713aSLionel Sambuc 16*f4a2713aSLionel Sambuc@end 17