blob: 7a3b3af656ae90464589df459ec7ea652f4b085f [file] [log] [blame]
Fariborz Jahanian43cb9a02009-12-14 17:47:10 +00001// RUN: clang -cc1 -rewrite-objc %s -o - | grep objc_msgSendSuper | grep MainMethod
Fariborz Jahanian71274312007-12-05 17:29:46 +00002
Steve Naroff46a98a72008-12-23 20:11:22 +00003typedef struct objc_selector *SEL;
4typedef struct objc_object *id;
5
Fariborz Jahanian71274312007-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