blob: 7e9f02853991a21442a344a7bdd8a5d93b885389 [file] [log] [blame]
Bill Wendling1bbd7ad2008-11-13 04:09:04 +00001// RUN: %llvmgcc -x objective-c -m64 -c %s -o /dev/null
2
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