llvm-project/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/InternalDefiner.h

12 lines
181 B
Objective-C

#import <Foundation/Foundation.h>
#import <stdint.h>
@interface InternalDefiner : NSObject {
@public
uintptr_t foo;
}
-(id)initWithFoo:(uintptr_t)f andBar:(uintptr_t)b;
@end