Files
swift-mirror/test/ClangImporter/Inputs/custom-modules/UnimportableMembersUser.h
Saleem Abdulrasool f8ab2070a6 test: adjust declaration to be portable (NFCI)
`long` is teated as `Int32` on Windows x86_64.  `intptr_t` will be
mapped to `Int` and `Int64`.  This fixes the failing test on Windows
which is LLP64 and should be equivalent on LP64 targets.
2019-07-28 11:25:17 -07:00

6 lines
204 B
Objective-C

@import UnimportableMembers;
@interface DesignatedInitializerInAnotherModule (/*evil class extension*/)
- (instancetype)initFromOtherModule:(intptr_t)x __attribute__((objc_designated_initializer));
@end