1 // RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o - | grep objc_msgSendSuper | grep MainMethod
3 typedef struct objc_selector *SEL;
4 typedef struct objc_object *id;
10 @interface MyDerived : SUPER
11 - (int) instanceMethod;
14 @implementation MyDerived
15 - (int) instanceMethod {
16 return [super MainMethod];