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