mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-02 21:01:07 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32187 72102866-910b-0410-8b05-ffd578937521
14 lines
265 B
Objective-C
14 lines
265 B
Objective-C
#import <Foundation/NSAutoreleasePool.h>
|
|
#import <Foundation/NSObject.h>
|
|
|
|
int
|
|
main()
|
|
{
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
|
NSObject *anObject = [NSObject new];
|
|
|
|
[anObject release];
|
|
[anObject release];
|
|
[pool release];
|
|
return 0;
|
|
}
|