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