Files
kotlin-fork/native/native.tests/testData/CInterop/executable/KT-63048/library.h
T
2023-11-14 19:35:52 +00:00

8 lines
193 B
Objective-C
Vendored

#import "Foundation/NSString.h"
#import "Foundation/NSObject.h"
@interface WithClassProperty : NSObject
-(instancetype) init;
@property (class, readonly, copy) NSString * stringProperty;
@end