blob: f8d6559c84248eb7dbe4c650737e6e45d4281a6e [file] [log] [blame]
@import Foundation;
@interface Base: NSObject
- (instancetype)initWithCustomField:(NSInteger)value NS_DESIGNATED_INITIALIZER;
- (instancetype)initConvenience;
@end
@interface Sub: Base
- (instancetype)initWithCustomField:(NSInteger)value NS_DESIGNATED_INITIALIZER;
@end