blob: 8991a88962df5c68c118f1e0e0a8e7932a0d8fd1 [file] [log] [blame]
Eric Christopher93848e02012-04-11 07:08:37 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -g -S -emit-llvm %s -o - | FileCheck %s
David Blaikie8a40cc62013-03-19 23:10:14 +00002// CHECK: {{.*}} [ DW_TAG_structure_type ] [Circle] [line 11,
Eric Christopherbe6c6862012-04-11 05:56:05 +00003@interface NSObject {
4 struct objc_object *isa;
5}
6@end
7
8@interface Shape : NSObject
9
10@end
11@interface Circle : Shape
12
13@end
14@implementation Circle
15
16@end