blob: 5d721e509ed5990ccc6fee70e278dfe1f9cad500 [file] [log] [blame]
// RUN: clang -fsyntax-only -verify %s
@interface NSObject @end
@protocol ProtocolA
+ (id)classMethod;
- (id)instanceMethod;
@end
@protocol ProtocolB <ProtocolA>
@end
@interface Foo : NSObject <ProtocolB>
@end
@interface SubFoo : Foo
@end
@implementation SubFoo
+ (id)method {
return [super classMethod];
}
- (id)method {
return [super instanceMethod];
}
@end