darling-objc4/test/load-order2.m
2020-06-09 21:50:17 -04:00

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