freebsd-nq/test/SemaObjC/protocol-lookup-2.m
2009-06-02 17:58:47 +00:00

34 lines
380 B
Objective-C

// RUN: clang-cc -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