blob: 298248519d26203813998d7236bd09b48f21bff8 [file] [log] [blame]
// RUN: clang -rewrite-objc %s -o=-
@interface SUPER
- (int) MainMethod;
@end
@interface MyDerived : SUPER
- (int) instanceMethod;
@end
@implementation MyDerived
- (int) instanceMethod {
return [super MainMethod];
}
@end