mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
18 lines
287 B
Objective-C
18 lines
287 B
Objective-C
void doSomethingInHead(int arg);
|
|
|
|
@interface BaseInHead
|
|
- (void)doIt:(int)arg;
|
|
@end
|
|
|
|
/// Awesome name.
|
|
@interface SameName
|
|
@end
|
|
@protocol SameName
|
|
@end
|
|
|
|
@interface BaseInHead(SomeCategory)
|
|
-(void)doItInCategory;
|
|
@end
|
|
|
|
void function_as_swift_private(void) __attribute__((swift_private));
|