mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
155 B
Objective-C
10 lines
155 B
Objective-C
#import <Foundation.h>
|
|
|
|
@protocol ObjcProt
|
|
-(void) someFunctionFromProt;
|
|
@end
|
|
|
|
@interface ClangInterface: NSObject <ObjcProt>
|
|
- (void)someFunction;
|
|
@end
|