mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
14 lines
299 B
Objective-C
14 lines
299 B
Objective-C
@import ObjectiveC;
|
|
|
|
@interface Foo : NSObject
|
|
@end
|
|
|
|
@protocol FooDelegate
|
|
- (void)foo:(Foo *)foo willConsumeObject:(id)obj __attribute__((swift_name("foo(_:willConsume:)")));
|
|
@end
|
|
|
|
@protocol OptionalButUnavailable
|
|
@optional
|
|
- (void)doTheThing:(id)thingToDoItWith __attribute__((unavailable));
|
|
@end
|