xref: /llvm-project/lldb/test/API/lang/objc/real-definition/main.m (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1#include <stdio.h>
2#include <stdint.h>
3#import <Foundation/Foundation.h>
4#import "Foo.h"
5
6int main (int argc, char const *argv[])
7{
8    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
9    Foo *foo = [[Foo alloc] init];
10    NSLog (@"foo is %@", foo); // Set breakpoint in main
11    [pool release];
12    return 0;
13}
14