xref: /llvm-project/lldb/test/API/lang/objc/modules/main.m (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1#import <Foundation/Foundation.h>
2
3int main()
4{
5    @autoreleasepool
6    {
7        NSString *string = @"Hello";
8        NSArray *array = @[ @1, @2, @3 ];
9
10        NSLog(@"Stop here"); // Set breakpoint 0 here.
11    }
12}
13