mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-21 15:31:17 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/branches/stable@32970 72102866-910b-0410-8b05-ffd578937521
12 lines
232 B
Objective-C
12 lines
232 B
Objective-C
#include <Foundation/NSURL.h>
|
|
#include "ObjectTesting.h"
|
|
|
|
@class NSAutoreleasePool;
|
|
int main()
|
|
{
|
|
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
|
|
|
PASS (1, "include of Foundation/NSURL.h works");
|
|
[arp release];
|
|
return 0;
|
|
}
|