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

source code of lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/application_specific_info/main.m