libs-base/Tests/base/headers/ObjCXX.mm
Richard Frith-MacDonald 31098241ae Update to current release
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/branches/stable@32970 72102866-910b-0410-8b05-ffd578937521
2011-05-03 13:19:28 +00:00

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;
}