Files
swift-mirror/test/SILGen/Inputs/usr/include/objc_extensions_helper.h
Arnold Schwaighofer 723e2f912f TypeChecker: Fix implicit dynamic inference for extensions methods
Even if the method is marked override we need to emit an objective C method
call.

There is no v-table guarantee because of the override keyword. The base class
method might be in an objective c class.

rdar://27389992
2016-08-01 15:32:57 -07:00

7 lines
123 B
Objective-C

@import Foundation;
@interface Base : NSObject
- (void)objCBaseMethod;
@property (nonatomic, strong) NSString *prop;
@end