// RUN: clang -rewrite-test %s -o=-
@interface SUPER
- (int) MainMethod;
@end
@interface MyDerived : SUPER
- (int) instanceMethod;
@implementation MyDerived
- (int) instanceMethod {
return [super MainMethod];
}