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

10 lines
139 B
Objective-C
Vendored

#import <Foundation/NSObject.h>
@protocol KT38234_P1
-(int)foo;
@end
@interface KT38234_Base : NSObject <KT38234_P1>
-(int)callFoo;
@end