mirror of
https://github.com/darlinghq/darling-objc4.git
synced 2024-11-26 21:50:26 +00:00
16 lines
205 B
Objective-C
16 lines
205 B
Objective-C
#include "test.h"
|
|
|
|
extern int state2, state3;
|
|
|
|
int state1 = 0;
|
|
|
|
OBJC_ROOT_CLASS
|
|
@interface One @end
|
|
@implementation One
|
|
+(void)load
|
|
{
|
|
testassert(state2 == 2 && state3 == 3);
|
|
state1 = 1;
|
|
}
|
|
@end
|