mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 08:41:03 +00:00
14 lines
280 B
Objective-C
14 lines
280 B
Objective-C
#import "ObjectTesting.h"
|
|
#import <Foundation/NSAutoreleasePool.h>
|
|
#import <Foundation/NSTimeZone.h>
|
|
|
|
int main()
|
|
{
|
|
ENTER_POOL
|
|
NSTimeZone *testObj = [NSTimeZone defaultTimeZone];
|
|
|
|
test_NSObject(@"NSTimeZone", [NSArray arrayWithObject: testObj]);
|
|
|
|
LEAVE_POOL
|
|
return 0;
|
|
}
|