blob: 38f68b98535a90981da793abf7744504ec27434c [file] [log] [blame]
// RUN: %clang_cc1 -rewrite-objc %s -o - | grep objc_msgSendSuper | grep MainMethod
typedef struct objc_selector *SEL;
typedef struct objc_object *id;
@interface SUPER
- (int) MainMethod;
@end
@interface MyDerived : SUPER
- (int) instanceMethod;
@end
@implementation MyDerived
- (int) instanceMethod {
return [super MainMethod];
}
@end