blob: fd61dbee2ee495bd0c5a50cf3a1c5deac9426eaa [file] [log] [blame]
// RUN: clang -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