libs-base/config/config.objc.m
rfm b4cdb1ba97 fixup to work with apple runtime.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33789 72102866-910b-0410-8b05-ffd578937521
2011-08-26 11:09:40 +00:00

22 lines
219 B
Objective-C

#include "objc-common.g"
@interface Test
+(int) testResult;
@end
@implementation Test
+ (void) initialize
{
return;
}
+(int) testResult
{
return -1;
}
@end
int main (void)
{
return ([Test testResult] + 1);
}