1#import <Foundation/Foundation.h>
2#include <stdio.h>
3
4extern int AddElement (char *value);
5extern char *GetElement (int idx);
6extern void *GetArray();
7
8int
9main ()
10{
11 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
12
13 int idx = AddElement (value: "some string");
14 void *array_token = GetArray();
15
16 char *string = GetElement (idx: 0); // Set breakpoint here, then do 'expr (NSArray*)array_token'.
17 if (string)
18 printf (format: "This: %s.\n", string);
19
20 [pool release];
21 return 0;
22}
23

source code of lldb/test/API/commands/expression/two-files/main.m