Files
swift-mirror/test/Interpreter/Inputs/objc_implementation.h
2023-03-02 12:22:11 -08:00

18 lines
290 B
Objective-C

#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface ImplClass : NSObject
- (instancetype)init;
@property (assign) NSInteger implProperty;
@property (assign) NSInteger defaultIntProperty;
+ (void)runTests;
- (nonnull NSString *)someMethod;
@end
NS_ASSUME_NONNULL_END