Files
swift-mirror/test/SILGen/Inputs/objc_dynamic_init.h
Joe Groff c374763632 SILGen: Fix override handling when a dynamic init is also required.
A missed case from #11107. Fixes SR-5542 | rdar://problem/33490780.
2017-07-25 10:24:19 -07:00

14 lines
205 B
Objective-C

@import Foundation;
@protocol ObjCInitProto
- initWithProto:(NSInteger)x;
@end
@interface ObjCBaseWithInitProto: NSObject <ObjCInitProto>
- initWithProto:(NSInteger)x NS_DESIGNATED_INITIALIZER;
@end