mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
26 lines
379 B
Objective-C
26 lines
379 B
Objective-C
@import ObjectiveC;
|
|
|
|
@interface B(Separate)
|
|
- (id)method:(int)i separateExtMethod:(double)d;
|
|
- (void)anotherCategoryMethod;
|
|
@end
|
|
|
|
@class RefedSub;
|
|
|
|
@interface SuperRefsSub
|
|
- takesSub:(RefedSub*)sub;
|
|
- overridden;
|
|
@end
|
|
|
|
@interface RefedSub : SuperRefsSub
|
|
- overridden;
|
|
@end
|
|
|
|
@protocol NSRuncing
|
|
- (void)runce;
|
|
@end
|
|
|
|
@interface NSMince
|
|
- (void)eatWith:(id <NSRuncing>)runcer;
|
|
@end
|