Files
kotlin-fork/kotlin-native/backend.native/functionalTest/testData/objcexport/samePropertyAndFunctionName/!samePropertyAndFunctionName.h
T
2023-11-27 09:08:54 +00:00

30 lines
914 B
Objective-C
Vendored

#import <Foundation/NSArray.h>
#import <Foundation/NSDictionary.h>
#import <Foundation/NSError.h>
#import <Foundation/NSObject.h>
#import <Foundation/NSSet.h>
#import <Foundation/NSString.h>
#import <Foundation/NSValue.h>
NS_ASSUME_NONNULL_BEGIN
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunknown-warning-option"
#pragma clang diagnostic ignored "-Wincompatible-property-type"
#pragma clang diagnostic ignored "-Wnullability"
#pragma push_macro("_Nullable_result")
#if !__has_feature(nullability_nullable_result)
#undef _Nullable_result
#define _Nullable_result _Nullable
#endif
__attribute__((objc_subclassing_restricted))
@interface FooKt : Base
+ (NSString *)foo __attribute__((swift_name("foo()")));
@property (class, readonly, getter=foo_) int32_t foo __attribute__((swift_name("foo")));
@end
#pragma pop_macro("_Nullable_result")
#pragma clang diagnostic pop
NS_ASSUME_NONNULL_END