1// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -o %t %s 2 3@interface Base @end 4 5@interface Sub1 : Base @end 6 7@implementation Sub1 @end 8 9@implementation Base { 10@private 11 id ivar; 12} 13@end 14 15