bolt/deps/llvm-18.1.8/lldb/test/API/lang/objc/real-definition/main.m
2025-02-14 19:21:04 +01:00

13 lines
324 B
Objective-C

#include <stdio.h>
#include <stdint.h>
#import <Foundation/Foundation.h>
#import "Foo.h"
int main (int argc, char const *argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Foo *foo = [[Foo alloc] init];
NSLog (@"foo is %@", foo); // Set breakpoint in main
[pool release];
return 0;
}