18d37b70dfdcec1b22718e84aac5b495ca417e31
[openbsd] /
1 //===-- main.m ------------------------------------------------*- ObjC -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8
9 #import <Foundation/Foundation.h>
10
11 int main (int argc, const char * argv[])
12 {
13     
14     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
15
16         OSType  a = 'test';
17         OSType b = 'best';
18         
19     [pool drain];// Set break point at this line.
20     return 0;
21 }
22