blob: 006c61e921efcbff9fffd08010a09f49d2b9b110 [file] [log] [blame]
@import Foundation;
extern NSInteger baseCounter;
extern NSInteger subCounter;
@interface Base : NSObject
- (nonnull instancetype)init __attribute__((objc_designated_initializer));
- (nonnull instancetype)initConveniently;
+ (nonnull instancetype)baseWithConvenientFactory:(_Bool)unused;
+ (nonnull Base *)baseWithNormalFactory:(_Bool)unused;
@end
@interface Sub : Base
@end