1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -emit-llvm -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.5 %s -o /dev/null 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc@interface A 4*f4a2713aSLionel Sambuc@end 5*f4a2713aSLionel Sambuc@protocol P 6*f4a2713aSLionel Sambuc@end 7*f4a2713aSLionel Sambuc@interface B : A <P> 8*f4a2713aSLionel Sambuc{ 9*f4a2713aSLionel Sambuc} 10*f4a2713aSLionel Sambuc@end 11*f4a2713aSLionel Sambuc@implementation B 12*f4a2713aSLionel Sambuc- (void)test { 13*f4a2713aSLionel Sambuc} 14*f4a2713aSLionel Sambuc@end 15