Files
kotlin-fork/native/native.tests/testData/CInterop/experimental/include/objcprotocol.h
T
Svyatoslav Scherbina bcc4a891be Native: add tests for ExperimentalForeignApi on cinterop declarations
Add tests checking that all (top-level) declarations generated by
cinterop now have ExperimentalForeignApi annotation.

^KT-58362
2023-07-21 11:54:14 +00:00

6 lines
135 B
Objective-C
Vendored

@protocol MyProtocol
-(id) instanceMethod;
+(int) classMethod;
@property id instanceProperty;
@property (class) int classProperty;
@end