blob: afd340a067c3cd9dbc4f351eadc27cee490e0142 [file] [log] [blame]
John McCall260611a2012-06-20 06:18:46 +00001// RUN: %clang_cc1 -emit-llvm -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.5 %s -o /dev/null
Eric Christopher7bc54e52011-08-20 00:37:56 +00002
3@interface A
4@end
5@protocol P
6@end
7@interface B : A <P>
8{
9}
10@end
11@implementation B
12- (void)test {
13}
14@end