mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
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
7 lines
123 B
Objective-C
7 lines
123 B
Objective-C
@import Foundation;
|
|
|
|
@interface Base : NSObject
|
|
- (void)objCBaseMethod;
|
|
@property (nonatomic, strong) NSString *prop;
|
|
@end
|