summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/application_specific_info/main.m
blob: e6745a81333d70977666acdf07db70fdbb9f5f38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <Foundation/Foundation.h>

int main(int argc, char *argv[]) {
  @autoreleasepool {

    NSArray *crew = [NSArray arrayWithObjects:@"Jim", @"Jason", @"Jonas", @"Ismail", nil];

    // This will throw an exception.
    NSLog(@"%@", [crew objectAtIndex:10]);
  }

  return 0;
}