Files
swift-mirror/test/SourceKit/Inputs/libIDE-mock-sdk/Mixed.framework/Headers/Mixed.h
Saleem Abdulrasool bdb7901a1c test: modernise nullability attributes (NFC)
Use the modern spelling for the nullability attributes in the test mock
headers.  Currently, this was relying on the predefined macros from
clang to work.  However, those are only available on Darwin targets.
This is needed to make the mock environments more portable.
2017-11-01 23:27:33 -07:00

48 lines
1009 B
Objective-C

struct PureClangType {
int x;
int y;
};
#ifndef SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_EXTRA
#endif
#ifndef SWIFT_CLASS
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_CLASS_EXTRA
#endif
#ifndef SWIFT_CLASS_NAMED
# define SWIFT_CLASS_NAMED(SWIFT_NAME) \
__attribute__((swift_name(SWIFT_NAME))) SWIFT_CLASS_EXTRA
#endif
#ifndef SWIFT_PROTOCOL_NAMED
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) \
__attribute__((swift_name(SWIFT_NAME))) SWIFT_PROTOCOL_EXTRA
#endif
SWIFT_CLASS("SwiftClass")
__attribute__((objc_root_class))
@interface SwiftClass
@end
@interface SwiftClass (Category)
- (void)categoryMethod:(struct PureClangType)arg;
@end
SWIFT_PROTOCOL_NAMED("CustomNameType")
@protocol SwiftProtoWithCustomName
@end
SWIFT_CLASS_NAMED("CustomNameClass")
__attribute__((objc_root_class))
@interface SwiftClassWithCustomName<SwiftProtoWithCustomName>
@end
id<SwiftProtoWithCustomName> _Nonnull
convertToProto(SwiftClassWithCustomName *_Nonnull obj);
SWIFT_CLASS("BOGUS")
@interface BogusClass
@end