Files
kotlin-fork/native/native.tests/testData/interop/objc/tests/callableReferences.h
T
2024-01-31 16:17:21 +00:00

7 lines
170 B
Objective-C
Vendored

#import <Foundation/NSObject.h>
@interface TestCallableReferences : NSObject
@property int value;
- (int)instanceMethod;
+ (int)classMethod:(int)first :(int)second;
@end