xref: /llvm-project/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/application_specific_info/main.m (revision 78d6e1d1d4b3b5c6bdd779256c915a8ac7148174)
1#include <Foundation/Foundation.h>
2
3int main(int argc, char *argv[]) {
4  @autoreleasepool {
5
6    NSArray *crew = [NSArray arrayWithObjects:@"Jim", @"Jason", @"Jonas", @"Ismail", nil];
7
8    // This will throw an exception.
9    NSLog(@"%@", [crew objectAtIndex:10]);
10  }
11
12  return 0;
13}
14