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 12int main (int argc, const char * argv[]) 13{ 14 15 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 16 17 BOOL yes = YES; 18 BOOL no = NO; 19 20 BOOL &yes_ref = yes; 21 BOOL &no_ref = no; 22 23 BOOL* yes_ptr = &yes; 24 BOOL* no_ptr = &no; 25 26 [pool drain];// Set break point at this line. 27 return 0; 28} 29 30