зеркало из https://github.com/microsoft/clang-1.git
19 строки
344 B
Objective-C
19 строки
344 B
Objective-C
// RUN: clang-cc -rewrite-objc %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
|