mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
18 lines
290 B
Objective-C
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
|