mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
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
|