blob: 2ec391704e7765c3be7846f28a59efe7e80e9990 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __OBJC__
# error "Compiler is not an Objective-C compiler."
#endif
#import <Foundation/Foundation.h>
int main()
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
[pool release];
return 0;
}
|