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

10 lines
197 B
Objective-C
Vendored

#import <Foundation/NSObject.h>
@protocol ExceptionThrower
-(void)throwException;
@end
@interface ExceptionThrowerManager : NSObject
+(void)throwExceptionWith:(id<ExceptionThrower>)thrower;
@end