1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o - | grep objc_msgSendSuper | grep MainMethod 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuctypedef struct objc_selector *SEL; 4*f4a2713aSLionel Sambuctypedef struct objc_object *id; 5*f4a2713aSLionel Sambuc 6*f4a2713aSLionel Sambuc@interface SUPER 7*f4a2713aSLionel Sambuc- (int) MainMethod; 8*f4a2713aSLionel Sambuc@end 9*f4a2713aSLionel Sambuc 10*f4a2713aSLionel Sambuc@interface MyDerived : SUPER 11*f4a2713aSLionel Sambuc- (int) instanceMethod; 12*f4a2713aSLionel Sambuc@end 13*f4a2713aSLionel Sambuc 14*f4a2713aSLionel Sambuc@implementation MyDerived 15*f4a2713aSLionel Sambuc- (int) instanceMethod { 16*f4a2713aSLionel Sambuc return [super MainMethod]; 17*f4a2713aSLionel Sambuc} 18*f4a2713aSLionel Sambuc@end 19