blob: ff943303b74660be064b87aa5e5b6f1510be70da [file] [log] [blame]
Fariborz Jahanianfda05582010-03-22 18:27:27 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi2 -emit-llvm -o %t %s
2// rdar://7547942.
3
4@interface Base @end
5
6@interface Sub1 : Base @end
7
8@implementation Sub1 @end
9
10@implementation Base {
11@private
12 id ivar;
13}
14@end
15