Files
2024-01-31 16:17:21 +00:00

11 lines
199 B
Objective-C
Vendored

#import "callableReferences.h"
@implementation TestCallableReferences
- (int)instanceMethod {
return self.value;
}
+ (int)classMethod:(int)first :(int)second {
return first + second;
}
@end