blob: 29c7087b0714511152b3cd9cdbc9d4c0c583c41d [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm -triple x86_64-apple-darwin %s -o /dev/null
@interface A
@end
@protocol P
@end
@interface B : A <P>
{
}
@end
@implementation B
- (void)test {
}
@end