summaryrefslogtreecommitdiffstats
path: root/test/Rewriter/objc-super-test.m
blob: fa95ad2fd3461f7652e52df829d5eced868dde1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_cc1 -rewrite-objc -fobjc-fragile-abi  %s -o - | grep objc_msgSendSuper | grep MainMethod

typedef struct objc_selector    *SEL;
typedef struct objc_object *id;

@interface SUPER
- (int) MainMethod;
@end

@interface MyDerived : SUPER
- (int) instanceMethod;
@end

@implementation MyDerived 
- (int) instanceMethod {
  return [super MainMethod];
}
@end