mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 08:26:27 +00:00
13 lines
234 B
Mathematica
13 lines
234 B
Mathematica
|
#include <Foundation/NSTask.h>
|
||
|
#include "ObjectTesting.h"
|
||
|
|
||
|
@class NSAutoreleasePool;
|
||
|
int main()
|
||
|
{
|
||
|
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
||
|
|
||
|
PASS (1, "include of Foundation/NSTask.h works");
|
||
|
[arp release];
|
||
|
return 0;
|
||
|
}
|