blob: 38f68b98535a90981da793abf7744504ec27434c [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -rewrite-objc %s -o - | grep objc_msgSendSuper | grep MainMethod
Fariborz Jahaniand5db92b2007-12-05 17:29:46 +00002
Steve Naroff6ab6dc72008-12-23 20:11:22 +00003typedef struct objc_selector *SEL;
4typedef struct objc_object *id;
5
Fariborz Jahaniand5db92b2007-12-05 17:29:46 +00006@interface SUPER
7- (int) MainMethod;
8@end
9
10@interface MyDerived : SUPER
11- (int) instanceMethod;
12@end
13
14@implementation MyDerived
15- (int) instanceMethod {
16 return [super MainMethod];
17}
18@end