Files
swift-mirror/test/ClangImporter/MixedSource/Inputs/user-module/user.h
Jordan Rose 61798ff6ec [test] Rename test/ClangModules to test/ClangImporter. (#5618)
...to match the component in include/ and lib/. No content change.
2016-11-02 18:00:53 -07:00

19 lines
566 B
Objective-C

@import Foundation;
#define testInMacro NSUInteger testFunctionInsideMacro(NSUInteger I);
typedef NSUInteger NSUIntegerAlias;
@interface NSUIntTest : NSObject <NSFastEnumeration>
@property NSUInteger IntProp;
@property NSUIntegerAlias TypedefProp;
- (NSUInteger)myCustomMethodThatOperatesOnNSUIntegers: (NSUInteger)key;
- (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
@end
NSUInteger testFunction(NSUInteger input);
testInMacro
NSUInteger testFunctionWithPointerParam(NSUInteger *input);