libs-base/Tests/base/headers/GSObjCRuntime.m

13 lines
250 B
Mathematica
Raw Permalink Normal View History

#include <GNUstepBase/GSObjCRuntime.h>
#include "ObjectTesting.h"
@class NSAutoreleasePool;
int main()
{
NSAutoreleasePool *arp = [NSAutoreleasePool new];
PASS (1, "include of GNUstepBase/GSObjCRuntime.h works");
[arp release];
return 0;
}