Files
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