1#import <Foundation/Foundation.h>
2
3int main (int argc, const char * argv[])
4{
5    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
6
7	BOOL yes  = YES;
8	BOOL no = NO;
9    BOOL unset = 12;
10
11	BOOL &yes_ref = yes;
12	BOOL &no_ref = no;
13	BOOL &unset_ref = unset;
14
15	BOOL* yes_ptr = &yes;
16	BOOL* no_ptr = &no;
17	BOOL* unset_ptr = &unset;
18
19    [pool drain];// Set break point at this line.
20    return 0;
21}
22
23