Home | History | Annotate | Download | only in rdar-11628688
      1 //===-- main.m ------------------------------------------------*- ObjC -*-===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is distributed under the University of Illinois Open Source
      6 // License. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 
     10 #import <Foundation/Foundation.h>
     11 
     12 int main (int argc, const char * argv[])
     13 {
     14     
     15     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
     16 
     17 	OSType  a = 'test';
     18 	OSType b = 'best';
     19 	
     20     [pool drain];// Set break point at this line.
     21     return 0;
     22 }
     23 
     24