mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 00:11:04 +00:00
14 lines
266 B
Objective-C
14 lines
266 B
Objective-C
#import "ObjectTesting.h"
|
|
#import <Foundation/NSAutoreleasePool.h>
|
|
#import <Foundation/NSTask.h>
|
|
|
|
int main()
|
|
{
|
|
ENTER_POOL
|
|
NSArray *testObj = AUTORELEASE([NSTask new]);
|
|
|
|
test_NSObject(@"NSTask", [NSArray arrayWithObject: testObj]);
|
|
|
|
LEAVE_POOL
|
|
return 0;
|
|
}
|