bolt/deps/llvm-18.1.8/lldb/test/API/lang/objc/hidden-ivars/InternalDefiner.h
2025-02-14 19:21:04 +01:00

11 lines
173 B
Objective-C

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