mirror of
https://github.com/apple/swift.git
synced 2026-06-27 12:25:55 +02:00
c374763632
A missed case from #11107. Fixes SR-5542 | rdar://problem/33490780.
14 lines
205 B
Objective-C
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
|