mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 00:11:04 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36158 72102866-910b-0410-8b05-ffd578937521
22 lines
238 B
Objective-C
22 lines
238 B
Objective-C
|
|
#include "objc-common.g"
|
|
|
|
GS_OBJC_ROOT_CLASS @interface Test
|
|
+(int) testResult;
|
|
@end
|
|
|
|
@implementation Test
|
|
+ (void) initialize
|
|
{
|
|
return;
|
|
}
|
|
+(int) testResult
|
|
{
|
|
return -1;
|
|
}
|
|
@end
|
|
|
|
int main (void)
|
|
{
|
|
return ([Test testResult] + 1);
|
|
}
|