• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o - | grep objc_msgSendSuper | grep MainMethod
2
3typedef struct objc_selector    *SEL;
4typedef struct objc_object *id;
5
6@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
19