Files
swift-mirror/test/Interpreter/Inputs/objc_implementation.h
Becca Royal-Gordon 8651af4325 Make @objcImpl work with @_cdecl
No real diagnostics yet, but we’re emitting mostly correct code.
2023-12-13 11:09:49 -08:00

20 lines
324 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
extern void implFunc(int param);
NS_ASSUME_NONNULL_END