xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/objc2-nonfragile-abi-impl.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -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
16