bolt/deps/llvm-18.1.8/lldb/test/API/lang/objc/objc-po-hint/main.m

23 lines
254 B
Mathematica
Raw Normal View History

2025-02-14 19:21:04 +01:00
#import <Foundation/Foundation.h>
@interface Foo : NSObject {}
-(id) init;
@end
@implementation Foo
-(id) init
{
return self = [super init];
}
@end
int main()
{
Foo *foo = [Foo new];
NSLog(@"a"); // Set breakpoint here.
return 0;
}