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

13 lines
135 B
Objective-C

#include "test.h"
int state3 = 0;
OBJC_ROOT_CLASS
@interface Three @end
@implementation Three
+(void)load
{
state3 = 3;
}
@end